D1726: githelp: replace suggestion of `hg record`

indygreg (Gregory Szorc) phabricator at mercurial-scm.org
Thu Jan 18 19:58:43 UTC 2018


This revision was automatically updated to reflect the committed changes.
Closed by commit rHGa10a0d5561a9: githelp: replace suggestion of `hg record` (authored by indygreg, committed by ).

REPOSITORY
  rHG Mercurial

CHANGES SINCE LAST UPDATE
  https://phab.mercurial-scm.org/D1726?vs=4594&id=4922

REVISION DETAIL
  https://phab.mercurial-scm.org/D1726

AFFECTED FILES
  hgext/githelp.py
  tests/test-githelp.t

CHANGE DETAILS

diff --git a/tests/test-githelp.t b/tests/test-githelp.t
--- a/tests/test-githelp.t
+++ b/tests/test-githelp.t
@@ -34,12 +34,12 @@
 
 githelp on a command with options should succeed
   $ hg githelp -- commit -pm "abc"
-  hg record -m 'abc'
+  hg commit --interactive -m 'abc'
 
 githelp on a command with standalone unrecognized option should succeed with warning
   $ hg githelp -- commit -p -v
   ignoring unknown option -v
-  hg record
+  hg commit --interactive
 
 githelp on a command with unrecognized option packed with other options should fail with error
   $ hg githelp -- commit -pv
diff --git a/hgext/githelp.py b/hgext/githelp.py
--- a/hgext/githelp.py
+++ b/hgext/githelp.py
@@ -415,7 +415,7 @@
 
     cmd = Command('commit')
     if opts.get('patch'):
-        cmd = Command('record')
+        cmd = Command('commit --interactive')
 
     if opts.get('amend'):
         if opts.get('no_edit'):



To: indygreg, #hg-reviewers, durin42, pulkit
Cc: mercurial-devel


More information about the Mercurial-devel mailing list