Can I squash commits in Mercurial?

后端 未结 8 1714
时光说笑
时光说笑 2020-11-30 20:13

I have a pair of commits that should really be just one. If I was using git, I would use:

git rebase -i 

and then

8条回答
  •  隐瞒了意图╮
    2020-11-30 20:53

    Yes, you can do this using mercurial without any extensions by Concatenating Changesets.

    Alternately if you want to use an extension you could use:

    • The Collapse Extension
    • The Rebase Extension or
    • The Histedit Extension

提交回复
热议问题