Git 저장소 업스트림 따라잡기

(Git 원본저장소 동기화에서 넘어옴)

1 개요[ | ]

Syncing a fork
Fork한 Git저장소를 원본저장소 싱크
Fork한 Git저장소를 원본저장소에 동기화
Fork한 Git저장소를 업스트림 따라잡기
Fork한 Git저장소를 업스트림에 맞춰 현행화
GitHub 원본저장소 동기화
# 1회성 사전작업
git remote add upstream http://github.com/org1/repo1.git # 업스트림 repo 지정

# 본 작업
git checkout main                                        # main 브랜치로 전환
git pull upstream main                                   # upstream의 main 변경내역 가져오기(pull)
git push origin main                                     # 내 repo의 main에 반영(push)

2 같이 보기[ | ]

3 참고[ | ]

문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}