반응형
git bash 사용
- 저장소에 있는 브랜치 확인
$ git remote -v
- 저장소에 원본 저장소 추가 (upstream)
$ git remote add upstream https://github.com/ORIGINAL_OWNER/ORIGINAL_REPOSITORY.git
- 다시 확인 (upstream 과 origin 둘 다 있으면 완료)
$ git remote -v
합친다는 의미는 같지만 fetch는 머지 X, pull 은 자동 머지 O
- upstream 저장소를 fetch
$ git fetch upstream [브랜치명]
- upstream 저장소를 pull
$ git pull upstream [브랜치명]
- fork 저장소 push
$ git push origin [브랜치명]
반응형
'IT > Git' 카테고리의 다른 글
[git] 파일 생성 (0) | 2019.07.31 |
---|---|
[git-ignore] .gitignore 파일 설정하기 (0) | 2019.07.24 |
협업시 GitHub 커밋 메시지 관리 (2) | 2019.07.16 |
[github] private repository 만들기! (0) | 2019.03.23 |
[git] 깃허브에 폴더별로 commit 메시지 다르게 올리기! (0) | 2019.02.24 |