시그마 삽질==six 시그마

fork repository에 원본 repository 수정분 반영하기 본문

프로그래밍/GIT

fork repository에 원본 repository 수정분 반영하기

Ethan Matthew Hunt 2020. 10. 18. 15:55

fork repository에 원본 repository 수정분 반영하기

 

 

1. 일단 fork repository를 로컬에 클론한다

git clone <fork repository url>

 

2.로컬에서 원격 리파지토리 등록

git remote add upstream <origin repository url>

 

 

3. 원본 remote로부터 pull

git pull upstream master

 

4. 원본 변경분 fork 리포에 반영

git push origin master

'프로그래밍 > GIT' 카테고리의 다른 글

강제로 pull 받기  (0) 2022.12.25
git tag  (0) 2020.10.18
git rebase  (0) 2020.08.31
git 기본 명령어  (2) 2020.08.20
git status , git diff  (0) 2020.08.20
Comments