Make git pull --rebase preserve merge commits

后端 未结 3 1471
一个人的身影
一个人的身影 2020-12-05 14:49

git pull --rebase removes unpushed merge commits. Is there a way to make it preserve them?

Say my history looks like—

A
| \\ 
B  H
|  |
         


        
相关标签:
3条回答
  • 2020-12-05 15:17

    Or (for the upcoming git 1.8.5 Q4 2013, now delivered in git 1.8.5, 2013-11-27):

    "git pull --rebase" always chose to do the bog-standard flattening rebase.
    You can tell it to run "rebase --preserve-merges" by setting "pull.rebase" configuration to "preserve".

    So a simple config will be enough to make sure your pull --rebase does preserve merge:

    git config pull.rebase preserve
    

    See commit 66713ef3 for more (thanks to Stephen Haberman):

    pull: allow pull to preserve merges when rebasing

    If a user is working on master, and has merged in their feature branch, but now has to "git pull" because master moved, with pull.rebase their feature branch will be flattened into master.

    This is because "git pull" currently does not know about rebase's preserve merges flag, which would avoid this behavior, as it would instead replay just the merge commit of the feature branch onto the new master, and not replay each individual commit in the feature branch.

    Add a --rebase=preserve option, which will pass along --preserve-merges to rebase.

    Also add 'preserve' to the allowed values for the pull.rebase config setting.

    0 讨论(0)
  • 2020-12-05 15:29

    you can split your pull in a fetch and a rebase

    git fetch origin master
    git rebase origin master --preserve-merges
    
    0 讨论(0)
  • 2020-12-05 15:41

    Simply:

    git pull --rebase=preserve
    

    From the docs:

    When set to preserve, rebase with the --preserve-merges option passed to git rebase so that locally created merge commits will not be flattened.

    0 讨论(0)
提交回复
热议问题