# HG changeset patch # User Sushil khanchi # Date 1541227879 -19800 # Node ID a8ed26f01c8d7b81cb4f5886be52ddc3a1d82c90 # Parent 4a3d588e53118826ff7e2c154b331e5732995046 pick: `hg help` was not showing the full cmd desc of `pick` after running command `hg help` it was not including the second line of command description. I guess it picks the firstline only. So I moved that part in first line of cmd description. diff -r 4a3d588e5311 -r a8ed26f01c8d CHANGELOG --- a/CHANGELOG Wed Nov 07 19:35:48 2018 +0100 +++ b/CHANGELOG Sat Nov 03 12:21:19 2018 +0530 @@ -7,6 +7,7 @@ * evolve: not longer attempt to translate revision's descriptions (issue6016) * evolve: fix compatibility with mercurial 4.8's narrow extension. + * pick: fix summary help text 8.3.1 -- 2018-10-25 ------------------- diff -r 4a3d588e5311 -r a8ed26f01c8d hgext3rd/evolve/cmdrewrite.py --- a/hgext3rd/evolve/cmdrewrite.py Wed Nov 07 19:35:48 2018 +0100 +++ b/hgext3rd/evolve/cmdrewrite.py Sat Nov 03 12:21:19 2018 +0530 @@ -1328,8 +1328,7 @@ ], _('[-r] rev')) def cmdpick(ui, repo, *revs, **opts): - """grabs a commit, move it on the top of working directory parent and - updates to it.""" + """move a commit on the top of working directory parent and updates to it.""" cont = opts.get('continue') abort = opts.get('abort') diff -r 4a3d588e5311 -r a8ed26f01c8d tests/test-grab.t --- a/tests/test-grab.t Wed Nov 07 19:35:48 2018 +0100 +++ b/tests/test-grab.t Sat Nov 03 12:21:19 2018 +0530 @@ -20,8 +20,7 @@ aliases: grab - grabs a commit, move it on the top of working directory parent and - updates to it. + move a commit on the top of working directory parent and updates to it. options: