Git: move a commit “on top”

2020-02-08 05:39发布

Let's say in master I have a feature disabled. I work on that feature on branch feature, so I have a special commit $ there that just enables that feature. Now I want to merge the changes I did in feature into master, but keep the enabling commit out. So it's like

main:    A--B--X--Y
feature: A--B--$--C--D

So let's say I want to do it, by moving the $ commit on top of feature:

new feature: A--B--C--D--$

How would I go about doing that?

2条回答
The star\"
2楼-- · 2020-02-08 06:26

git rebase -i B, and then move $ to the end of the list that shows up in your editor. It will start out as the first line in the file that opens. You could also just delete that line entirely, which will just drop that commit out of your branch's history.

查看更多
我想做一个坏孩纸
3楼-- · 2020-02-08 06:31

If you want to keep you commits in the same order on feature you should make a new branch and perform the following. Otherwise just do this on feature

git rebase -i <sha for commit B>

Move commit $ to the bottom of the list

git checkout master
git rebase feature <or the other branch name>

It wasn't clear to me on the question but if you didn't want $ at all, rather than moving it delete it after git rebase -i Though you will want to do this on a new branch so that you don't lose it. As you are changing history.

This also assumes that the branch feature hasn't been pushed to a remote as rewriting history is bad.

查看更多
登录 后发表回答