How can I merge many commits, but leave one out?

前端 未结 5 635
醉话见心
醉话见心 2020-12-07 19:37

Suppose I have this feature branch \"foo\". Now I want to merge it back into master, but I\'ve added some debugging code that I don\'t want in master.

The debug cod

相关标签:
5条回答
  • 2020-12-07 20:16

    I've had success with:

    git rebase -p --onto SHA^ SHA
    

    Where SHA is the commit you want to remove.

    via http://sethrobertson.github.io/GitFixUm/fixup.html#remove_deep

    0 讨论(0)
  • 2020-12-07 20:25

    Use interactive rebase:

    git rebase -i SHA-OF-FIRST-COMMIT-IN-BRANCH
    

    That will open something like this in your $EDITOR:

        pick 8ac4783 folders and folders
        pick cf8b1f5 minor refactor
        pick 762b37a Lots of improvement. Folders adn shit.
        pick 3fae6e1 Be ready to tableview
        pick b174dc0 replace folder collection view w/ table view
        pick ef1b65b more finish
        pick ecc407f responder chain and whatnot
        pick 080a847 play/pause video
        pick 6719000 wip: movie fader
        pick c5f2933 presentation window fade transition
    
        # Rebase e6f77c8..c5f2933 onto e6f77c8
        #
        # Commands:
        #  p, pick = use commit
        #  e, edit = use commit, but stop for amending
        #  s, squash = use commit, but meld into previous commit
        #
        # If you remove a line here THAT COMMIT WILL BE LOST.
        # However, if you remove everything, the rebase will be aborted.
        #
    

    So what you do is simply to remove the line containing the debug commit, write the file and close your editor, and git will tell you something along the lines of:

    Successfully rebased and updated refs/heads/master.
    

    Now you can just merge in that branch to master.

    UPDATE: It should be noted that altering history with rebase should only happen on private branches. If this branch has been exposed to the public, use git revert as proposed by other answerer.

    0 讨论(0)
  • 2020-12-07 20:33

    Despite what other SCMs use it to mean, in git, git revert is an inverse cherry-pick.

    0 讨论(0)
  • 2020-12-07 20:39

    Use interactive rebase to remove the commits which you do not want.

    On a new branch "foo-merge" created from "foo":

    git rebase -i master
    

    Once you are in commit edit mode, remove the lines containing the debug commits, save, and quit from the editor.

    After rebasing, simply pull foo-merge into master:

    git checkout master
    git pull . foo-merge
    
    0 讨论(0)
  • 2020-12-07 20:43

    Another idea is to add the reverted commit of the one with debug code and to merge it into your master branch. Afterwards we remove that extra commit in the foo branch.

    git checkout foo
    git revert COMMIT_REF_WITH_DEBUG_CODE
    
    git checkout master
    git merge foo
    
    git checkout foo
    git reset --hard HEAD~1
    

    Make sure your working tree is clean. First create the reverted commit. Then merge it into master. Afterwards reset the branch pointer of the foo branch to the parent of the reverted commit, so it's back in its original state.

    If you dislike using git reset then you could create a temporary branch where you create the reverted commit. At the end you delete the temporary branch.

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