Mercurial > evolve
changeset 1677:48c3a472aec7
split: rewrite the pre-split commit message
I find this wording slightly clearer.
author | Jordi Gutiérrez Hermoso <jordigh@octave.org> |
---|---|
date | Sun, 24 Apr 2016 22:31:58 -0400 |
parents | 53a2a9aa3d89 |
children | 1247d87a738d |
files | README hgext/evolve.py |
diffstat | 2 files changed, 3 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- 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