From: Junio C Hamano <gitster@pobox.com>
To: Benny Halevy <benny@tonian.com>
Cc: Martin von Zweigbergk <martin.von.zweigbergk@gmail.com>,
git@vger.kernel.org, Benny Halevy <bhalevy@tonian.com>
Subject: Re: [PATCH] git-remote rename should match whole string when renaming remote ref directory
Date: Mon, 26 Sep 2011 11:04:26 -0700 [thread overview]
Message-ID: <7v62kf41ud.fsf@alter.siamese.dyndns.org> (raw)
In-Reply-To: <1317045186-25206-1-git-send-email-benny@tonian.com> (Benny Halevy's message of "Mon, 26 Sep 2011 16:53:06 +0300")
Benny Halevy <benny@tonian.com> writes:
> From: Benny Halevy <bhalevy@tonian.com>
>
> Otherwise, with two remotes: test, test-2
> git remote rename test test-
> ends up with:
> .git/refs/remotes/test-
> .git/refs/remotes/test--2
> ...
> diff --git a/builtin/remote.c b/builtin/remote.c
> index f2a9c26..5443e71 100644
> --- a/builtin/remote.c
> +++ b/builtin/remote.c
> @@ -571,7 +571,7 @@ static int read_remote_branches(const char *refname,
> const char *symref;
>
> strbuf_addf(&buf, "refs/remotes/%s", rename->old);
> - if (!prefixcmp(refname, buf.buf)) {
> + if (!strcmp(refname, buf.buf)) {
At this point of the code, refname has "refs/remotes/test/foo" and it is
queued to later rename it to "refs/remotes/test-/foo" (the next invocation
of this function will see "refs/remotes/test/bar" in refname). And the
strbuf buf.buf has "refs/remotes/test"; your !strcmp(refname, buf.buf)
would never trigger, I suspect.
Isn't 60e5eee (remote: "rename o foo" should not rename ref "origin/bar",
2011-09-01) the correct fix for this issue? It makes buf.buf properly
terminated with a slash, to contain "refs/remotes/test/" so that prefixcmp
properly matches it with "refs/remotes/test/foo" but not with refs under
other hierarchies like "refs/remotes/test-2/anything".
Thanks.
next prev parent reply other threads:[~2011-09-26 18:04 UTC|newest]
Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top
2011-09-26 13:53 [PATCH] git-remote rename should match whole string when renaming remote ref directory Benny Halevy
2011-09-26 18:04 ` Junio C Hamano [this message]
2011-09-27 2:45 ` Benny Halevy
2011-09-27 6:07 ` Junio C Hamano
2011-09-27 9:38 ` Benny Halevy
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=7v62kf41ud.fsf@alter.siamese.dyndns.org \
--to=gitster@pobox.com \
--cc=benny@tonian.com \
--cc=bhalevy@tonian.com \
--cc=git@vger.kernel.org \
--cc=martin.von.zweigbergk@gmail.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).