Git

git origin과 upstream 차이

dm.kim 2023. 3. 24. 13:53

GitHub fork context에서 이해하는 것이 좋음

 

upstream: 일반적으로 GitHub에서 forked한 original repository 가리킴

origin: GitHub에서 fork한(사용자가 소유하고있는) repository, original repository의 clone

 

따라서 origin과 upstream은 다를 수 있다.

ex. local에서 작업할 때 origin은 자신이 소유한 GitHub repository로 설정하고 upstream은 GitHub의 다른 repository(original repository)로 설정할 수 있다.

'Git' 카테고리의 다른 글

여러 commit 합치기  (0) 2024.07.29
Git 초기 설정  (0) 2023.10.23
유용한 git config  (0) 2023.03.24
Git remote와 sync 맞추기  (0) 2023.03.24
Clear git local cache  (0) 2023.03.24