Fork한 repository를 update 하는 방법
원본 저장소 : 다른 사람꺼
포크 저장소 : 다른 사람꺼를 포크해온 내꺼
$ git clone https://github.com/sjoleee/Algorithm.git
$ git remote -v
origin https://github.com/hy57in/Mangorithm.git (fetch)
origin https://github.com/hy57in/Mangorithm.git (push)
$ git remote add upstream https://github.com/hy57in/Mangorithm.git
$ git remote -v
명령어를 입력해보면 upstream으로 원본 저장소가 추가된 것을 확인할 수 있다.
origin https://github.com/sjoleee/Algorithm.git (fetch)
origin https://github.com/sjoleee/Algorithm.git (push)
upstream https://github.com/hy57in/Mangorithm.git (fetch)
upstream https://github.com/hy57in/Mangorithm.git (push)
$ git fetch upstream
$ git merge upstream/main
git push