mercurial/localrepo.py
changeset 22645 6e431e1635b6
parent 22642 45e50d8546d9
child 22678 bf0b5bfc24b9
--- a/mercurial/localrepo.py	Thu Oct 02 12:16:07 2014 -0500
+++ b/mercurial/localrepo.py	Fri Sep 26 17:44:00 2014 -0700
@@ -1724,7 +1724,14 @@
                 # if we support it, stream in and adjust our requirements
                 if not streamreqs - self.supportedformats:
                     return self.stream_in(remote, streamreqs)
-        return self.pull(remote, heads)
+
+        quiet = self.ui.backupconfig('ui', 'quietbookmarkmove')
+        try:
+            self.ui.setconfig('ui', 'quietbookmarkmove', True, 'clone')
+            ret = self.pull(remote, heads)
+        finally:
+            self.ui.restoreconfig(quiet)
+        return ret
 
     def pushkey(self, namespace, key, old, new):
         self.hook('prepushkey', throw=True, namespace=namespace, key=key,