Fork한 repository 최신화하기

참고 자료


Fork 한 Repository 업데이트 하기 https://gmlwjd9405.github.io/2017/10/28/how-to-collaborate-on-GitHub-2.html 이미지로 과정 살펴보기 Pull과 fetch의 차이

fork된 repository 최신으로 동기화


  1. remote 현황 파악 : git remote -v
  2. upstream이라는 이름으로 원격 저장소 주소를 등록 : git remote add upstream '원본 repository url'
  3. git fetch upstream
  4. git merge upstream/브랜치 이름
  5. git push origin 브랜치 이름