공부

[Git] fork & PR & rebase

승가비 2018. 11. 28. 09:21
728x90

[Git] fork & PR & rebase


# 원격저장소 확인

git remote -v


# 원격저장소 등록

git remote add upstream https://github.com/ORIGINAL_OWNER/ORIGINAL_REPOSITORY.git

git remote add upstream https://github.com/angular/angular.git


# 리소스 Sync 맞추기

git fetch upstream

git pull upstream master

git rebase upstream master



[출처] http://www.notforme.kr/archives/1631

728x90