D516: pull: do not prompt "hg update" if update.requiredest is set

quark (Jun Wu) phabricator at mercurial-scm.org
Mon Aug 28 15:06:34 EDT 2017


This revision was automatically updated to reflect the committed changes.
Closed by commit rHG8abbae93045a: pull: do not prompt "hg update" if update.requiredest is set (authored by quark).

REPOSITORY
  rHG Mercurial

CHANGES SINCE LAST UPDATE
  https://phab.mercurial-scm.org/D516?vs=1273&id=1365

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

AFFECTED FILES
  mercurial/commands.py
  tests/test-update-dest.t

CHANGE DETAILS

diff --git a/tests/test-update-dest.t b/tests/test-update-dest.t
--- a/tests/test-update-dest.t
+++ b/tests/test-update-dest.t
@@ -33,3 +33,16 @@
   abort: update destination required by configuration
   (use hg pull followed by hg update DEST)
   [255]
+
+  $ cd ..
+
+update.requiredest should silent the "hg update" text after pull
+  $ hg init repo1
+  $ cd repo1
+  $ hg pull ../repo
+  pulling from ../repo
+  requesting all changes
+  adding changesets
+  adding manifests
+  adding file changes
+  added 2 changesets with 2 changes to 1 files
diff --git a/mercurial/commands.py b/mercurial/commands.py
--- a/mercurial/commands.py
+++ b/mercurial/commands.py
@@ -3849,7 +3849,7 @@
                         "merge)\n"))
         else:
             ui.status(_("(run 'hg heads' to see heads)\n"))
-    else:
+    elif not ui.configbool('commands', 'update.requiredest'):
         ui.status(_("(run 'hg update' to get a working copy)\n"))
 
 @command('^pull',



To: quark, #hg-reviewers, durin42
Cc: mercurial-devel


More information about the Mercurial-devel mailing list