且构网

分享程序员开发的那些事...
且构网 - 分享程序员编程开发的那些事

git pull和git pull --rebase之间的区别

更新时间:2023-11-07 22:50:04

git pull = git fetch + git merge against tracking upstream branch

git pull --rebase = git fetch + git rebase against tracking upstream branch

If you want to know how git merge and git rebase differ, read this.