[Git] Fork 한 repository 최신으로 동기화 하기
Roel Downey
- Fork 한 repository를 최신으로 동기화 시켜야 할 때가 있었다. 첫 번째 : 내가 Fork한 repository를 가져온다. 두 번째 : 원본 repository를 remote repository로 추가한다. Fork 해온 repository 에서 remote repository 를 확인하면 아래와 같이 나올 것이다. $ git remote -v origin https://github.com/YOUR_USERNAME/YOUR_FORK.git (fetch) origin https://github.com/YOUR_USERNAME/YOUR_FORK.git (push) 동기화해오고 싶은 원본 repository 를 upstream 이라는 이름으로 추가한다. $ git remote add upstr..