From: Johannes Schindelin <Johannes.Schindelin@gmx.de>
To: Matthieu Moy <Matthieu.Moy@imag.fr>
Cc: git@vger.kernel.org, Jan Hudec <bulb@ucw.cz>,
Yann Dirson <ydirson@altern.org>,
Christian Jaeger <christian@jaeger.mine.nu>
Subject: Re: [RFC][PATCH] Re: git-rm isn't the inverse action of git-add
Date: Sun, 8 Jul 2007 19:10:59 +0100 (BST) [thread overview]
Message-ID: <Pine.LNX.4.64.0707081855300.4248@racer.site> (raw)
In-Reply-To: <vpqfy3yajbj.fsf_-_@bauges.imag.fr>
Hi,
On Sun, 8 Jul 2007, Matthieu Moy wrote:
> Subject: [PATCH] Make git-rm obey in more circumstances.
This is not really a good patch title. Since it only obeys your
particular understanding of what it should do. You are changing
semantics, and you should say so.
> In the previous behavior of git-rm, git refused to do anything in case
> of a difference between the file on disk, the index, and the HEAD. As a
> result, the -f flag is forced even for simple senarios like:
>
> $ git add foo
> # oops, I didn't want to version it
> $ git rm -f [--cached] foo
> # foo is deleted on disk if --cached isn't provided.
>
> This patch proposes a saner behavior. When there are no difference at
> all between file, index and HEAD, the file is removed both from the
> index and the tree, as before.
>
> Otherwise, if the index matches either the file on disk or the HEAD, the
> file is removed from the index, but the file is kept on disk, it may
> contain important data.
However, if some of the files are of the first kind, and some are of the
second kind, you happily apply with mixed strategies. IMO that is wrong.
> static struct {
> int nr, alloc;
> - const char **name;
> + struct file_info * files;
> } list;
>
> static void add_list(const char *name)
> {
> if (list.nr >= list.alloc) {
> list.alloc = alloc_nr(list.alloc);
> - list.name = xrealloc(list.name, list.alloc * sizeof(const char *));
> + list.files = xrealloc(list.files, list.alloc * sizeof(const char *));
This is wrong, too. Yes, it works. But it really should be
"sizeof(struct file_info *)". Remember, code is also documentation.
> +static int remove_file_maybe(const struct file_info fi, int quiet)
> +{
> + const char *path = fi.name;
> + if (!fi.local_changes && !fi.staged_changes) {
> + /* The file matches either the index or the HEAD.
> + * It's content exists somewhere else, it's safe to
> + * delete it.
> + */
> + return remove_file(path);
> + } else {
Superfluous "{ .. }".
> + if (!quiet)
> + fprintf(stderr,
> + "note: file '%s' not removed "
> + "(doesn't match %s).\n",
> + path,
> + fi.local_changes?"the index":"HEAD");
> + return 0;
> + }
> +}
I suspect that this case does never fail. 0 means success for
remove_file(). Not good. You should at least have a way to ensure that
it removed the files from the working tree from a script. Otherwise there
is not much point in returning a value to begin with.
> @@ -224,13 +257,13 @@ int cmd_rm(int argc, const char **argv, const char *prefix)
> if (!index_only) {
> int removed = 0;
> for (i = 0; i < list.nr; i++) {
> - const char *path = list.name[i];
> - if (!remove_file(path)) {
> + if (!remove_file_maybe(list.files[i], quiet)) {
> removed = 1;
> continue;
> }
> if (!removed)
> - die("git-rm: %s: %s", path, strerror(errno));
> + die("git-rm: %s: %s",
> + list.files[i].name, strerror(errno));
> }
> }
Style: the old code set and used "path" for readability. You should do
the same (with "file", probably).
Additionally, since this changes semantics, you better provide test cases
to show what is expected to work, and _ensure_ that it actually works.
Ciao,
Dscho
next prev parent reply other threads:[~2007-07-08 18:18 UTC|newest]
Thread overview: 37+ messages / expand[flat|nested] mbox.gz Atom feed top
2007-07-02 18:09 git-rm isn't the inverse action of git-add Christian Jaeger
2007-07-02 19:42 ` Yann Dirson
2007-07-02 20:23 ` Christian Jaeger
2007-07-02 20:40 ` Yann Dirson
2007-07-02 20:54 ` Matthieu Moy
2007-07-02 21:05 ` Johannes Schindelin
2007-07-03 10:37 ` Matthieu Moy
2007-07-03 12:09 ` Johannes Schindelin
2007-07-03 13:40 ` Matthieu Moy
2007-07-03 14:21 ` Johannes Schindelin
2007-07-04 20:08 ` Jan Hudec
2007-07-05 13:44 ` Matthieu Moy
2007-07-05 14:00 ` David Kastrup
2007-07-08 17:36 ` [RFC][PATCH] " Matthieu Moy
2007-07-08 18:10 ` Johannes Schindelin [this message]
2007-07-08 20:34 ` Matthieu Moy
2007-07-08 21:49 ` Johannes Schindelin
2007-07-09 9:45 ` Matthieu Moy
2007-07-13 17:36 ` Matthieu Moy
2007-07-13 17:41 ` [PATCH] More permissive "git-rm --cached" behavior without -f Matthieu Moy
2007-07-13 17:57 ` Jeff King
2007-07-13 18:53 ` Matthieu Moy
2007-07-14 3:42 ` Jeff King
2007-07-14 0:44 ` Jakub Narebski
2007-07-14 6:52 ` Junio C Hamano
2007-07-14 7:16 ` Junio C Hamano
2007-07-14 10:14 ` Matthieu Moy
2007-07-02 21:20 ` git-rm isn't the inverse action of git-add Christian Jaeger
2007-07-03 4:12 ` Jeff King
2007-07-03 4:47 ` Junio C Hamano
2007-07-03 4:59 ` Jeff King
2007-07-03 5:09 ` Junio C Hamano
2007-07-03 5:12 ` Jeff King
2007-07-03 6:26 ` Junio C Hamano
2007-07-11 12:20 ` Jakub Narebski
2007-07-11 18:56 ` Jan Hudec
2007-07-11 21:26 ` 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=Pine.LNX.4.64.0707081855300.4248@racer.site \
--to=johannes.schindelin@gmx.de \
--cc=Matthieu.Moy@imag.fr \
--cc=bulb@ucw.cz \
--cc=christian@jaeger.mine.nu \
--cc=git@vger.kernel.org \
--cc=ydirson@altern.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).