split: rewrite the pre-split commit message
authorJordi Gutiérrez Hermoso <jordigh@octave.org>
Sun, 24 Apr 2016 22:31:58 -0400
changeset 1677 48c3a472aec7
parent 1675 53a2a9aa3d89
child 1678 1247d87a738d
split: rewrite the pre-split commit message I find this wording slightly clearer.
README
hgext/evolve.py
--- a/README	Wed Apr 20 17:08:59 2016 -0700
+++ b/README	Sun Apr 24 22:31:58 2016 -0400
@@ -68,6 +68,7 @@
 - various documentation fix and update
 - hg summary now suggest 'hg evolve --continue when appropriate`
 - compatibility with Mercurial 3.8 'hgext' namespace package.
+- small improvement to the `hg split` instruction
 
 5.3.0 -- 2016-02-11
 
--- a/hgext/evolve.py	Wed Apr 20 17:08:59 2016 -0700
+++ b/hgext/evolve.py	Sun Apr 24 22:31:58 2016 -0400
@@ -2910,7 +2910,8 @@
         def haschanges():
             modified, added, removed, deleted = repo.status()[:4]
             return modified or added or removed or deleted
-        msg = 'HG: Please, edit the original changeset description.\n\n'
+        msg = ("HG: This is the original pre-split commit message. "
+               "Edit it as appropriate.\n\n")
         msg += ctx.description()
         opts['message'] = msg
         opts['edit'] = True