Skip to content

Latest commit

 

History

History
14 lines (11 loc) · 649 Bytes

update_forkedRepo_from_originRepo.md

File metadata and controls

14 lines (11 loc) · 649 Bytes

Fork 한 Repository 최신으로 동기화 하는 방법

img load fail

작업 설명

원본 repository로부터 최신 정보를 가져와 fork한 repository를 업데이트 시키는 작업이다. 동기화 작업이 완료되면 local, remote 저장소가 모두 Origin Repository의 최신 상태에 동기화된다.

요약 설명

  1. $git remote add upstream 원본저장소URL
  2. $git remote -v
  3. $git fetch upstream
  4. $git checkout master
  5. $git merge upstream/master
  6. $git push origin master