How can I pull all remote changes with rebase instead of merge?

后端 未结 4 1248
臣服心动
臣服心动 2020-12-28 15:23

I can pull changes using git pull, but it merges my local commits. Is there a git rebase equivalent with which I can pull in remote changes?

4条回答
  •  遥遥无期
    2020-12-28 16:06

    Yes you can git pull --rebase.

    You can also set that to be the default pull behaviour when you track a branch with git config branch.autosetuprebase always. Replace "always" with "remote" or "local" if you want to do it to those specific types of branches that you're tracking.

    Now all you have to do is git pull.

    If for some reason you want to do a merge, you can do git pull --no-rebase.

    Hope this helps.

    UPDATE: see comments below for how to do this on existing branches.

提交回复
热议问题