From: Dmitry Potapov <dpotapov@gmail.com>
To: Johannes Schindelin <Johannes.Schindelin@gmx.de>
Cc: git@vger.kernel.org
Subject: Re: [PATCH] git-filter-branch could be confused by similar names
Date: Sun, 30 Dec 2007 16:54:28 +0300 [thread overview]
Message-ID: <20071230135428.GW13968@dpotapov.dyndns.org> (raw)
In-Reply-To: <Pine.LNX.4.64.0712301145360.14355@wbgn129.biozentrum.uni-wuerzburg.de>
On Sun, Dec 30, 2007 at 11:46:59AM +0100, Johannes Schindelin wrote:
>
> On Sun, 30 Dec 2007, Dmitry Potapov wrote:
>
> > On Sat, Dec 29, 2007 at 11:36:51PM +0100, Johannes Schindelin wrote:
> > >
> > > On Tue, 25 Dec 2007, Dmitry Potapov wrote:
> > >
> > > > 'git-filter-branch branch' could fail producing the error: "Which
> > > > ref do you want to rewrite?" if existed another branch or tag, which
> > > > name was 'branch-something' or 'something/branch'.
> > > >
> > > > Signed-off-by: Dmitry Potapov <dpotapov@gmail.com>
> > > > ---
> > > > git-filter-branch.sh | 2 +-
> > > > t/t7003-filter-branch.sh | 10 ++++++++++
> > > > 2 files changed, 11 insertions(+), 1 deletions(-)
> > > >
> > > > diff --git a/git-filter-branch.sh b/git-filter-branch.sh
> > > > index dbab1a9..b89a720 100755
> > > > --- a/git-filter-branch.sh
> > > > +++ b/git-filter-branch.sh
> > > > @@ -219,7 +219,7 @@ do
> > > > ;;
> > > > *)
> > > > ref="$(git for-each-ref --format='%(refname)' |
> > > > - grep /"$ref")"
> > > > + grep '^refs/[^/]\+/'"$ref"'$')"
> > >
> > > Hmm. I wonder if this is a proper solution. It still does not error
> > > out when you have a tag and a branch of the same name.
> >
> > Are you sure? I had created a tag and a branch with the same name, and
> > then tried git filter-branch on it, and it did error out:
> > ===
> > warning: refname 'test1' is ambiguous.
> > Which ref do you want to rewrite?
> > ===
>
> Okay, bad example. But try "heads/master".
You are right. Somehow, I forgot about this possibility. How about this:
+ grep '^refs/\([^/]\+/\)\?'"$ref"'$')"
> Or "origin" in a repository
> which has "refs/remotes/origin/HEAD".
Well, it does not work, but it would not work before either, because you
are very likely to have something else in origin. Actually, I doubt that
anyone will want to filter "origin", but if you insist, here is another
grep expression, which should accommodate that case too:
+ grep '^refs/\([^/]\+/\)\?'"$ref"'\(/HEAD\)\?$')"
In any case, I believe it would be better to have a more strict grep
expression than one that is used by git-filter-branch now, because now
you either have a very confusing error message, or accidentally you
could filter a wrong branch. And as you said before, the proper C
solution is not feasible for 1.5.4, so I believe a better grep
expression is the right thing to do for now.
If you have no other objection, I will resent the patch with the
corrected version of the grep expression.
Dmitry
next prev parent reply other threads:[~2007-12-30 13:55 UTC|newest]
Thread overview: 18+ messages / expand[flat|nested] mbox.gz Atom feed top
2007-12-25 14:35 [PATCH] git-filter-branch could be confused by similar names Dmitry Potapov
2007-12-29 22:36 ` Johannes Schindelin
2007-12-30 10:31 ` Dmitry Potapov
2007-12-30 10:46 ` Johannes Schindelin
2007-12-30 13:54 ` Dmitry Potapov [this message]
2007-12-30 16:03 ` Johannes Schindelin
2007-12-30 18:40 ` Dmitry Potapov
2007-12-30 18:51 ` Dmitry Potapov
2008-01-03 21:27 ` Junio C Hamano
2008-01-04 15:51 ` Dmitry Potapov
2008-01-04 20:28 ` Junio C Hamano
2008-01-05 16:03 ` Johannes Schindelin
2008-01-05 20:23 ` [PATCH 1/2] git-rev-parse --symbolic-full-name Junio C Hamano
2008-01-05 20:28 ` [PATCH 2/2] filter-branch: work correctly with ambiguous refnames Junio C Hamano
2008-01-06 1:57 ` Johannes Schindelin
2008-01-06 2:53 ` Junio C Hamano
2008-01-06 9:14 ` Johannes Schindelin
2008-01-05 1:17 ` [PATCH] git-filter-branch could be confused by similar names Junio C Hamano
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=20071230135428.GW13968@dpotapov.dyndns.org \
--to=dpotapov@gmail.com \
--cc=Johannes.Schindelin@gmx.de \
--cc=git@vger.kernel.org \
/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).