Re: [PATCH] Revert "remote-hg: update bookmarks when pulling"

2013-05-16 Thread Junio C Hamano
Felipe Contreras  writes:

> On Thu, May 16, 2013 at 1:16 PM, Junio C Hamano  wrote:
>> Junio C Hamano  writes:
>>
>>> Felipe Contreras  writes:
>>>
 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 
 ---

 Intended for master (v1.8.3).
>>>
>>> Hmm, is this the one we merged yesterday?
>>
>> Just double-checking.
>
> Yes.

OK.  Thanks for keeping an eye on real user reports.

Please relay our thanks to Rodney as well.
--
To unsubscribe from this list: send the line "unsubscribe git" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html


Re: [PATCH] Revert "remote-hg: update bookmarks when pulling"

2013-05-16 Thread Felipe Contreras
On Thu, May 16, 2013 at 1:16 PM, Junio C Hamano  wrote:
> Junio C Hamano  writes:
>
>> Felipe Contreras  writes:
>>
>>> 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 
>>> ---
>>>
>>> Intended for master (v1.8.3).
>>
>> Hmm, is this the one we merged yesterday?
>
> Just double-checking.

Yes.

-- 
Felipe Contreras
--
To unsubscribe from this list: send the line "unsubscribe git" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html


Re: [PATCH] Revert "remote-hg: update bookmarks when pulling"

2013-05-16 Thread Junio C Hamano
Felipe Contreras  writes:

> 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 
> ---
>
> Intended for master (v1.8.3).

OK, will revert before I start today's final integration run.

Thanks.
--
To unsubscribe from this list: send the line "unsubscribe git" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html


Re: [PATCH] Revert "remote-hg: update bookmarks when pulling"

2013-05-16 Thread Junio C Hamano
Junio C Hamano  writes:

> Felipe Contreras  writes:
>
>> 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 
>> ---
>>
>> Intended for master (v1.8.3).
>
> Hmm, is this the one we merged yesterday?

Just double-checking.

This is a lot more urgent request for confirmation than anything
else I've been sending today (and receiving responses from you
about).

>
>>
>>  contrib/remote-helpers/git-remote-hg | 3 ---
>>  1 file changed, 3 deletions(-)
>>
>> diff --git a/contrib/remote-helpers/git-remote-hg 
>> b/contrib/remote-helpers/git-remote-hg
>> index dc276af..beb864b 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):
--
To unsubscribe from this list: send the line "unsubscribe git" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html


Re: [PATCH] Revert "remote-hg: update bookmarks when pulling"

2013-05-16 Thread Junio C Hamano
Felipe Contreras  writes:

> 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 
> ---
>
> Intended for master (v1.8.3).

Hmm, is this the one we merged yesterday?

>
>  contrib/remote-helpers/git-remote-hg | 3 ---
>  1 file changed, 3 deletions(-)
>
> diff --git a/contrib/remote-helpers/git-remote-hg 
> b/contrib/remote-helpers/git-remote-hg
> index dc276af..beb864b 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):
--
To unsubscribe from this list: send the line "unsubscribe git" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html


[PATCH] Revert "remote-hg: update bookmarks when pulling"

2013-05-16 Thread Felipe Contreras
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 
---

Intended for master (v1.8.3).

 contrib/remote-helpers/git-remote-hg | 3 ---
 1 file changed, 3 deletions(-)

diff --git a/contrib/remote-helpers/git-remote-hg 
b/contrib/remote-helpers/git-remote-hg
index dc276af..beb864b 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):
-- 
1.8.3.rc2.542.g24820ba

--
To unsubscribe from this list: send the line "unsubscribe git" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html