[Git/GitHub] 깃허브에 Fork한 저장소 업데이트

SoyoungLee·2021년 6월 3일
0

Git/GitHub

목록 보기
6/7
post-thumbnail

깃허브에서 포크한 저장소에 원본저장소 내용을
업데이트 하려고 찾아보다가 잘 정리해두신 분꺼 보고 기록

Fork한 Repository 업데이트하기

  • 원본저장소 : 남의 원본
  • 포크저장소 : 내 깃에 가져온 거

1. 로컬에 Clone 하기

$ git clone https://github.com/soyoung-dev/ECO100.git . 

2. Clone한 로컬 저장소로 이동

$ cd /c/Programming/eco

3. 현재 리모트 저장소 조회

$ git remote -v

4. 리모트 저장소에 원본 저장소 추가

$ git remote add upstream https://github.com/shyunju7/ECO100.git

5. 리모트 저장소 확인

$ git remote -v

6. 리모트 저장소 fetch

$ git fetch upstream

7. 리모트 저장소 merge

$ git merge upstream/master

8. 포크 저장소로 push

$ git push

끗~!

참고 : https://velog.io/@k904808/Fork-%ED%95%9C-Repository-%EC%97%85%EB%8D%B0%EC%9D%B4%ED%8A%B8-%ED%95%98%EA%B8%B0

profile
Android Developer..+ iOS 슬쩍 🌱 ✏️끄적끄적,,개인 기록용 👩🏻‍💻

0개의 댓글