티스토리 뷰
fork한 repository 최신으로 동기화
-
원본 repository를 remote저장소로 추가
git remote add upstream '원본 저장소 주소' git remote -v // 확인
-
upstream으로부터 최신 업데이트 가져오기
git fetch upstream
-
upstream의 master branch로부터 나의 local master branch로 merge
git checkout master // local master branch로 이동 git merge upstream/master
-
push하여 origin remote repository에 적용
git push origin master
'Git' 카테고리의 다른 글
[Git] 자주쓰는 명령어 정리 (0) | 2020.02.09 |
---|
댓글