git 기본 사항

hyojeong_sss·2021년 3월 8일
0
post-thumbnail

git init한 후 해야할 일

  1. team repository와 local 저장소 연결
git remote add upstream <team repo 주소>
  1. 본인 repository와 local 저장소 연결
git remote add origin <본인 repo 주소>
  1. 연결 되었는지 확인하기
git remote -v

push하기

  1. 본인의 repo에 먼저 push (팀 repo에 바로 올리면 오류 검출이 어려움)
git add .
git commit -m ""
git push origin master
  1. 본인의 repo에 들어가서 pull request 날리기

  2. 팀 repo에 들어가서 merge
    다른 사람에게 merge해달라고 부탁하기


team repo에서 pull 받기

  • team repository에 올린 것을 받아오기
git pull upstream master

pull 한 후 충돌이 일어났을 때

충돌난 코드 정리 후

git add .
git commit -m ""
git push origin master
profile
컴공생

0개의 댓글