Change the required message for the pressed combination. (Mercury)

I created a dummy repository on a bitbucket to try and learn how to do this. I saw this in Git, but I'm not sure if this is possible in Hg.

I have the following hg log:

changeset: 3:742dd9f71f46 tag: tip user: RHsu date: Tue Apr 09 09:58:55 2013 -0400 summary: added some text to 3 changeset: 2:dd431695edcd user: RHsu date: Tue Apr 09 09:58:30 2013 -0400 summary: Let try to amend this commit changeset: 1:b59ed9c945f9 user: RHsu date: Tue Apr 09 09:58:15 2013 -0400 summary: added some text to t1 changeset: 0:a8a24f3831ab user: RHsu date: Tue Apr 09 09:52:32 2013 -0400 summary: Add text files for testing 

These changes are added to the bitbucket. How can I change the commit message changeet2?

EDIT: I tried using histedit , but that only modifies local commits. Then, when I click, two heads are created.

EDIT: Unlike another question, since this question is about editing the commit that was clicked on the bitpack.

+4
source share
1 answer

Bitbucket has a strip feature that can be used to remove a set of changes from the repository. This is what you should use to get rid of the head that you do not want. You will get to it https://bitbucket.org/<user>/<repo>/admin/strip . You can also click the little gear icon while viewing your repo on a web page, and then display the admin interface, which has a section for deleting change sets.

+4
source

All Articles