From: Jeff King <peff@peff.net>
To: Junio C Hamano <gitster@pobox.com>
Cc: jpinheiro <7jpinheiro@gmail.com>, git@vger.kernel.org
Subject: Re: Behavior of git rm
Date: Wed, 3 Apr 2013 16:36:12 -0400 [thread overview]
Message-ID: <20130403203612.GB3982@sigill.intra.peff.net> (raw)
In-Reply-To: <7vli8z5xfr.fsf@alter.siamese.dyndns.org>
On Wed, Apr 03, 2013 at 10:35:52AM -0700, Junio C Hamano wrote:
> > diff --git a/builtin/rm.c b/builtin/rm.c
> > index dabfcf6..7b91d52 100644
> > --- a/builtin/rm.c
> > +++ b/builtin/rm.c
> > @@ -110,7 +110,7 @@ static int check_local_mod(unsigned char *head, int index_only)
> > ce = active_cache[pos];
> >
> > if (lstat(ce->name, &st) < 0) {
> > - if (errno != ENOENT)
> > + if (errno != ENOENT && errno != ENOTDIR)
>
> OK. We may be running lstat() on D/F but there may be D that is not
> a directory. If it is a file, we get ENOTDIR.
>
> By the way, if D is a dangling symlink, we get ENOENT; in such a
> case, we report "rm 'D/F'" on the output and remove the index entry.
>
> $ rm -f .git/index && rm -fr D E
> $ mkdir D && >D/F && git add D && rm -fr D
> $ ln -s erewhon D && git rm D/F && git ls-files
> rm 'D/F'
That seems sane to me, and makes me feel like handling ENOTDIR here is
the right direction. What that conditional is trying to say is "if it
is because the file is not there...", and so far we know of three
conditions where it is not there:
1. There is no entry at that path.
2. There is a non-directory in the prefix of that path.
3. There is a dangling symlink in the prefix of that path.
(1) and (3) we already handle via ENOENT. I think it is sane to handle
(2) the same as (3), but we do not do so currently.
> Also if D is a symlink that point at a directory E, "git rm" does
> something interesting.
>
> (1) Perhaps we want a complaint in this case.
>
> $ rm -f .git/index && rm -fr D E
> $ mkdir D && >D/F && git add D && rm -fr D
> $ mkdir E && ln -s E D && git rm D/F
I think that is OK without complaint; the user asked to get rid of D/F,
and it is indeed gone (as well as its index entry) after the call
finishes. And we did not even need to delete anything, so we cannot be
losing data. I am much more concerned about this case:
> (2) Perhaps we want to make sure D/F is not beyond a symlink in this
> case.
>
> $ rm -f .git/index && rm -fr D E
> $ mkdir D && >D/F && git add D && rm -fr D
> $ mkdir E && ln -s E D && date >E/F && git rm D/F
where the user is deleting something that may or may not be related to
the original D/F. On the other hand, I don't have that much sympathy;
"rm" would make the same deletion. But hmm...shouldn't we be doing an
up-to-date check? Indeed:
$ git rm D/F
error: 'D/F' has staged content different from both the file and the HEAD
(use -f to force removal)
$ git commit -m foo && git rm D/F
$ git rm D/F
error: 'D/F' has local modifications
(use --cached to keep the file, or -f to force removal)
So I do not think we need any extra safety; the content-level checks
should be enough to make sure we are not losing anything.
-Peff
next prev parent reply other threads:[~2013-04-03 20:36 UTC|newest]
Thread overview: 18+ messages / expand[flat|nested] mbox.gz Atom feed top
2013-04-03 14:50 Behavior of git rm jpinheiro
2013-04-03 15:58 ` Jeff King
2013-04-03 17:35 ` Junio C Hamano
2013-04-03 20:36 ` Jeff King [this message]
2013-04-04 19:02 ` Jeff King
2013-04-04 19:03 ` [PATCH 1/3] rm: do not complain about d/f conflicts during deletion Jeff King
2013-04-04 19:03 ` [PATCH 2/3] t3600: test behavior of reverse-d/f conflict Jeff King
2013-04-04 19:06 ` [PATCH 3/3] t3600: test rm of path with changed leading symlinks Jeff King
2013-04-04 19:42 ` Junio C Hamano
2013-04-04 19:55 ` Jeff King
2013-04-04 20:31 ` Junio C Hamano
2013-04-04 21:03 ` Jeff King
2013-04-04 23:12 ` Junio C Hamano
2013-04-04 23:29 ` Jeff King
2013-04-04 23:33 ` Junio C Hamano
2013-04-05 0:00 ` Jeff King
2013-04-05 4:59 ` Junio C Hamano
2013-04-05 5:04 ` Jeff King
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=20130403203612.GB3982@sigill.intra.peff.net \
--to=peff@peff.net \
--cc=7jpinheiro@gmail.com \
--cc=git@vger.kernel.org \
--cc=gitster@pobox.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).