Way to change a commit message after a commit?
Gregory Collins
greg at maptuit.com
Tue Mar 4 01:15:43 UTC 2008
"Jay Kint" <bilbo at hobbit-hole.org> writes:
> Subject line pretty much asks it all. Is there a way to change the
> message? I didn't find anything on the wiki or a Google search.
If you've pushed it, then probably not. If the commit is local only, you
can enable mercurial queues by editing your Mercurial.ini (Windows) or
$HOME/.hgrc file (unix):
========================================================================
[extensions]
hgext.mq=
========================================================================
and then do:
hg qimport -r tip
hg qrefresh -e
hg qdelete -r tip
G.
More information about the Mercurial
mailing list