Fork한 repository 최신화하기
in Git on Github
참고 자료
Fork 한 Repository 업데이트 하기 https://gmlwjd9405.github.io/2017/10/28/how-to-collaborate-on-GitHub-2.html 이미지로 과정 살펴보기 Pull과 fetch의 차이
fork된 repository 최신으로 동기화
- remote 현황 파악 :
git remote -v
- upstream이라는 이름으로 원격 저장소 주소를 등록 :
git remote add upstream '원본 repository url'
git fetch upstream
git merge upstream/브랜치 이름
git push origin 브랜치 이름