📜  git rebase vs merge - Shell-Bash 代码示例

📅  最后修改于: 2022-03-11 14:51:27.199000             🧑  作者: Mango

代码示例4
git pull fetches the latest changes of the current branch from a remote and applies those changes to your local copy of the branch. 
Generally this is done by merging, i.e. the local changes are merged into the remote changes. So git pull is similar to git fetch & git merge.

git pull --rebase :
The local changes you made will be rebased on top of the remote changes, instead of being merged with the remote changes.