diff -r 1ec7cdaf898f -r 6e431e1635b6 mercurial/localrepo.py --- 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,