Mercurial > public > mercurial-scm > hg
comparison mercurial/localrepo.py @ 25841:a2f7e0ba57a6
bookmarks: mark internal-only option
author | Matt Mackall <mpm@selenic.com> |
---|---|
date | Thu, 25 Jun 2015 17:51:32 -0500 |
parents | 25897d778738 |
children | 800e090e9c64 |
comparison
equal
deleted
inserted
replaced
25840:25897d778738 | 25841:a2f7e0ba57a6 |
---|---|
1870 streamreqs = set(streamreqs.split(',')) | 1870 streamreqs = set(streamreqs.split(',')) |
1871 # if we support it, stream in and adjust our requirements | 1871 # if we support it, stream in and adjust our requirements |
1872 if not streamreqs - self.supportedformats: | 1872 if not streamreqs - self.supportedformats: |
1873 self.stream_in(remote, streamreqs) | 1873 self.stream_in(remote, streamreqs) |
1874 | 1874 |
1875 # internal config: ui.quietbookmarkmove | |
1875 quiet = self.ui.backupconfig('ui', 'quietbookmarkmove') | 1876 quiet = self.ui.backupconfig('ui', 'quietbookmarkmove') |
1876 try: | 1877 try: |
1877 self.ui.setconfig('ui', 'quietbookmarkmove', True, 'clone') | 1878 self.ui.setconfig('ui', 'quietbookmarkmove', True, 'clone') |
1878 ret = exchange.pull(self, remote, heads).cgresult | 1879 ret = exchange.pull(self, remote, heads).cgresult |
1879 finally: | 1880 finally: |