diff hgext/evolve.py @ 620:232536f5c987 compat-hg2.3

use comments to combine commit messages in fold
author Denis Laxalde <denis.laxalde@logilab.fr>
date Thu, 22 Nov 2012 11:30:36 +0100
parents f50f8da7a077
children e50a5d9a6cbf 07d813af96c4
line wrap: on
line diff
--- a/hgext/evolve.py	Mon Nov 26 11:59:40 2012 +0100
+++ b/hgext/evolve.py	Thu Nov 22 11:30:36 2012 +0100
@@ -2222,8 +2222,10 @@
         try:
             allctx = [repo[r] for r in revs]
             targetphase = max(c.phase() for c in allctx)
-            msg = '\n\n***\n\n'.join(c.description() for c in allctx)
-            commitopts = {'message': msg}
+            msgs = ["HG: This is a fold of %d changesets." % len(allctx)]
+            msgs += ["HG: Commit message of changeset %s.\n\n%s\n" %
+                     (c.rev(), c.description()) for c in allctx]
+            commitopts = {'message': "\n".join(msgs)}
             commitopts['edit'] = True
             newid, _ = rewrite(repo, root, allctx, head,
                              [root.p1().node(), root.p2().node()],