원본 repository로부터 최신 정보를 가져와 fork한 repository를 업데이트 시키는 작업이다. 동기화 작업이 완료되면 local, remote 저장소가 모두 Origin Repository의 최신 상태에 동기화된다.
$git remote add upstream 원본저장소URL
$git remote -v
$git fetch upstream
$git checkout master
$git merge upstream/master
$git push origin master