Is there a safe way to rename an old commit (no branching occured in the meantime) that is some five or six commits down the road from the current tip?
|
|
It depends on whether you did already push this commit to a public repo, or cointains merges. When the commit is already public visible, there is no way to change the commit afterwards. Also the may MQ works does not allow to edit merge commits afterwards. When the commit is not public visible, then you can import all commits to a MQ (enable the mq extension and call EDIT: sample workflow Say this is initial state, and you want to edit 4:
Now you import all Revisions, including 4, into the mercurial queues with
the next step is to unapply all patches:
Don't panic, your history is not gone, it is still there in .hg/patches. Now the branch name can be set with Now the first frozen commit can re-applied with
Now you can reword the commit message with
You can edit further commits, by navigation to each one with
|
||||
|
|
Since this is a private repo that hasn't been pushed anywhere, it should be perfectly safe to edit history. (Note that in the general case, history editing isn't a viable option. It only applies if the repo hasn't been published.) There are plenty of Mercurial extensions to permit editing history, Once it's set up:
This will open up whichever text editor you normally use for
For the changeset you need to modify, change
And you'll be prompted for the new commit message, as usual. |
|||
|
|