[branch1] $ git rebase master
를 하게되면, 우리의 branch1 브랜치 앞과 공통조상 사이에 master 를 끼워넣는 rebase 를 하게 된다.
그러면 pull --rebase 옵션은 뭘까..
pull 은 fetch + merge 이다.
따라서 pull --rebase 는 fetch + rebase 이다.
git pull --rebase 는 결국
git fetch 와 git rebase teamone/master 이 두 명령을 순서대로 실행하는 것과 같다.
'Git' 카테고리의 다른 글
git rebase -i (0) | 2021.10.06 |
---|---|
squash 머지 한 브랜치에서 계속 작업할 경우 (0) | 2021.10.06 |
upstream vs origin (0) | 2021.10.06 |
Rebase (0) | 2021.10.06 |
.gitignore (0) | 2020.12.11 |