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.
--- 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
-------------------
--- 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')
--- 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: