From: Felipe Contreras Date: Thu, 16 May 2013 12:43:15 +0000 (-0500) Subject: Revert "remote-hg: update bookmarks when pulling" X-Git-Tag: v1.8.3-rc3~7 X-Git-Url: https://git.lorimer.id.au/gitweb.git/diff_plain/629b60a77d0bca1358af666605548acc4dcc5841?ds=sidebyside Revert "remote-hg: update bookmarks when pulling" This reverts commit 24317ef32ac3111ed00792f9b2921dc19dd28fe2. Different versions of Mercurial have different arguments for bookmarks.updatefromremote(), while it should be possible to call the right function with the right arguments depending on the version, it's safer to restore the old behavior for now. Reported by Rodney Lorrimar. Signed-off-by: Felipe Contreras Signed-off-by: Junio C Hamano --- diff --git a/contrib/remote-helpers/git-remote-hg b/contrib/remote-helpers/git-remote-hg index dc276afb1b..beb864b57e 100755 --- a/contrib/remote-helpers/git-remote-hg +++ b/contrib/remote-helpers/git-remote-hg @@ -363,9 +363,6 @@ def get_repo(url, alias): die('Repository error') repo.pull(peer, heads=None, force=True) - rb = peer.listkeys('bookmarks') - bookmarks.updatefromremote(myui, repo, rb, url) - return repo def rev_to_mark(rev):