You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
git add .
git commit -m "깃메시지"# 오류가 난다면 (pull를 하기 위해서 무조건 commit 먼저)
git pull origin main
git push origin main
git branch 브랜치명
git checkout 브랜치명 #브랜치로 이동# 위 두개 합친 명령어# git checkout -b 브랜치명
================================
git add .
git commit -m "깃메시지"
================================
# 중앙 서버 코드 당겨오기
git pull origin main
# github 서버로 보내기
git push origin 브랜치명
본인 Repo 업데이트 하기
# 최초 1회
git remote add csy https://github.com/csy1204/Capstone-project-2020-Fall.git
# git remote 확인
git remote -v
# 최신 상태로 업데이트 (주기적 반복)
git pull csy main