Add builtin "git rm" command
This changes semantics very subtly, because it adds a new atomicity
guarantee.
In particular, if you "git rm" several files, it will now do all or
nothing. The old shell-script really looped over the removed files one by
one, and would basically randomly fail in the middle if "-f" was used and
one of the files didn't exist in the working directory.
This C builtin one will not re-write the index after each remove, but
instead remove all files at once. However, that means that if "-f" is used
(to also force removal of the file from the working directory), and some
files have already been removed from the workspace, it won't stop in the
middle in some half-way state like the old one did.
So what happens is that if the _first_ file fails to be removed with "-f",
we abort the whole "git rm". But once we've started removing, we don't
leave anything half done. If some of the other files don't exist, we'll
just ignore errors of removal from the working tree.
This is only an issue with "-f", of course.
I think the new behaviour is strictly an improvement, but perhaps more
importantly, it is _different_. As a special case, the semantics are
identical for the single-file case (which is the only one our test-suite
seems to test).
The other question is what to do with leading directories. The old "git
rm" script didn't do anything, which is somewhat inconsistent. This one
will actually clean up directories that have become empty as a result of
removing the last file, but maybe we want to have a flag to decide the
behaviour?
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Signed-off-by: Junio C Hamano <junkio@cox.net>
2006-05-20 01:19:34 +02:00
|
|
|
/*
|
|
|
|
* "git rm" builtin command
|
|
|
|
*
|
|
|
|
* Copyright (C) Linus Torvalds 2006
|
|
|
|
*/
|
|
|
|
#include "builtin.h"
|
2014-10-01 12:28:42 +02:00
|
|
|
#include "lockfile.h"
|
Add builtin "git rm" command
This changes semantics very subtly, because it adds a new atomicity
guarantee.
In particular, if you "git rm" several files, it will now do all or
nothing. The old shell-script really looped over the removed files one by
one, and would basically randomly fail in the middle if "-f" was used and
one of the files didn't exist in the working directory.
This C builtin one will not re-write the index after each remove, but
instead remove all files at once. However, that means that if "-f" is used
(to also force removal of the file from the working directory), and some
files have already been removed from the workspace, it won't stop in the
middle in some half-way state like the old one did.
So what happens is that if the _first_ file fails to be removed with "-f",
we abort the whole "git rm". But once we've started removing, we don't
leave anything half done. If some of the other files don't exist, we'll
just ignore errors of removal from the working tree.
This is only an issue with "-f", of course.
I think the new behaviour is strictly an improvement, but perhaps more
importantly, it is _different_. As a special case, the semantics are
identical for the single-file case (which is the only one our test-suite
seems to test).
The other question is what to do with leading directories. The old "git
rm" script didn't do anything, which is somewhat inconsistent. This one
will actually clean up directories that have become empty as a result of
removing the last file, but maybe we want to have a flag to decide the
behaviour?
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Signed-off-by: Junio C Hamano <junkio@cox.net>
2006-05-20 01:19:34 +02:00
|
|
|
#include "dir.h"
|
2006-05-23 10:31:38 +02:00
|
|
|
#include "cache-tree.h"
|
2006-12-25 12:11:00 +01:00
|
|
|
#include "tree-walk.h"
|
2007-10-05 21:09:19 +02:00
|
|
|
#include "parse-options.h"
|
2013-06-12 10:06:43 +02:00
|
|
|
#include "string-list.h"
|
2012-09-26 20:21:13 +02:00
|
|
|
#include "submodule.h"
|
2013-07-14 10:35:42 +02:00
|
|
|
#include "pathspec.h"
|
Add builtin "git rm" command
This changes semantics very subtly, because it adds a new atomicity
guarantee.
In particular, if you "git rm" several files, it will now do all or
nothing. The old shell-script really looped over the removed files one by
one, and would basically randomly fail in the middle if "-f" was used and
one of the files didn't exist in the working directory.
This C builtin one will not re-write the index after each remove, but
instead remove all files at once. However, that means that if "-f" is used
(to also force removal of the file from the working directory), and some
files have already been removed from the workspace, it won't stop in the
middle in some half-way state like the old one did.
So what happens is that if the _first_ file fails to be removed with "-f",
we abort the whole "git rm". But once we've started removing, we don't
leave anything half done. If some of the other files don't exist, we'll
just ignore errors of removal from the working tree.
This is only an issue with "-f", of course.
I think the new behaviour is strictly an improvement, but perhaps more
importantly, it is _different_. As a special case, the semantics are
identical for the single-file case (which is the only one our test-suite
seems to test).
The other question is what to do with leading directories. The old "git
rm" script didn't do anything, which is somewhat inconsistent. This one
will actually clean up directories that have become empty as a result of
removing the last file, but maybe we want to have a flag to decide the
behaviour?
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Signed-off-by: Junio C Hamano <junkio@cox.net>
2006-05-20 01:19:34 +02:00
|
|
|
|
2007-10-05 21:09:19 +02:00
|
|
|
static const char * const builtin_rm_usage[] = {
|
2015-01-13 08:44:47 +01:00
|
|
|
N_("git rm [<options>] [--] <file>..."),
|
2007-10-05 21:09:19 +02:00
|
|
|
NULL
|
|
|
|
};
|
Add builtin "git rm" command
This changes semantics very subtly, because it adds a new atomicity
guarantee.
In particular, if you "git rm" several files, it will now do all or
nothing. The old shell-script really looped over the removed files one by
one, and would basically randomly fail in the middle if "-f" was used and
one of the files didn't exist in the working directory.
This C builtin one will not re-write the index after each remove, but
instead remove all files at once. However, that means that if "-f" is used
(to also force removal of the file from the working directory), and some
files have already been removed from the workspace, it won't stop in the
middle in some half-way state like the old one did.
So what happens is that if the _first_ file fails to be removed with "-f",
we abort the whole "git rm". But once we've started removing, we don't
leave anything half done. If some of the other files don't exist, we'll
just ignore errors of removal from the working tree.
This is only an issue with "-f", of course.
I think the new behaviour is strictly an improvement, but perhaps more
importantly, it is _different_. As a special case, the semantics are
identical for the single-file case (which is the only one our test-suite
seems to test).
The other question is what to do with leading directories. The old "git
rm" script didn't do anything, which is somewhat inconsistent. This one
will actually clean up directories that have become empty as a result of
removing the last file, but maybe we want to have a flag to decide the
behaviour?
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Signed-off-by: Junio C Hamano <junkio@cox.net>
2006-05-20 01:19:34 +02:00
|
|
|
|
|
|
|
static struct {
|
|
|
|
int nr, alloc;
|
2012-09-26 20:21:13 +02:00
|
|
|
struct {
|
|
|
|
const char *name;
|
|
|
|
char is_submodule;
|
|
|
|
} *entry;
|
Add builtin "git rm" command
This changes semantics very subtly, because it adds a new atomicity
guarantee.
In particular, if you "git rm" several files, it will now do all or
nothing. The old shell-script really looped over the removed files one by
one, and would basically randomly fail in the middle if "-f" was used and
one of the files didn't exist in the working directory.
This C builtin one will not re-write the index after each remove, but
instead remove all files at once. However, that means that if "-f" is used
(to also force removal of the file from the working directory), and some
files have already been removed from the workspace, it won't stop in the
middle in some half-way state like the old one did.
So what happens is that if the _first_ file fails to be removed with "-f",
we abort the whole "git rm". But once we've started removing, we don't
leave anything half done. If some of the other files don't exist, we'll
just ignore errors of removal from the working tree.
This is only an issue with "-f", of course.
I think the new behaviour is strictly an improvement, but perhaps more
importantly, it is _different_. As a special case, the semantics are
identical for the single-file case (which is the only one our test-suite
seems to test).
The other question is what to do with leading directories. The old "git
rm" script didn't do anything, which is somewhat inconsistent. This one
will actually clean up directories that have become empty as a result of
removing the last file, but maybe we want to have a flag to decide the
behaviour?
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Signed-off-by: Junio C Hamano <junkio@cox.net>
2006-05-20 01:19:34 +02:00
|
|
|
} list;
|
|
|
|
|
2012-09-26 20:21:13 +02:00
|
|
|
static int get_ours_cache_pos(const char *path, int pos)
|
|
|
|
{
|
|
|
|
int i = -pos - 1;
|
|
|
|
|
|
|
|
while ((i < active_nr) && !strcmp(active_cache[i]->name, path)) {
|
|
|
|
if (ce_stage(active_cache[i]) == 2)
|
|
|
|
return i;
|
|
|
|
i++;
|
|
|
|
}
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2013-06-12 10:06:43 +02:00
|
|
|
static void print_error_files(struct string_list *files_list,
|
|
|
|
const char *main_msg,
|
|
|
|
const char *hints_msg,
|
|
|
|
int *errs)
|
|
|
|
{
|
|
|
|
if (files_list->nr) {
|
|
|
|
int i;
|
|
|
|
struct strbuf err_msg = STRBUF_INIT;
|
|
|
|
|
|
|
|
strbuf_addstr(&err_msg, main_msg);
|
|
|
|
for (i = 0; i < files_list->nr; i++)
|
|
|
|
strbuf_addf(&err_msg,
|
|
|
|
"\n %s",
|
|
|
|
files_list->items[i].string);
|
2013-06-12 10:06:44 +02:00
|
|
|
if (advice_rm_hints)
|
|
|
|
strbuf_addstr(&err_msg, hints_msg);
|
2013-06-12 10:06:43 +02:00
|
|
|
*errs = error("%s", err_msg.buf);
|
|
|
|
strbuf_release(&err_msg);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-07-26 08:05:17 +02:00
|
|
|
static void error_removing_concrete_submodules(struct string_list *files, int *errs)
|
|
|
|
{
|
|
|
|
print_error_files(files,
|
|
|
|
Q_("the following submodule (or one of its nested "
|
|
|
|
"submodules)\n"
|
|
|
|
"uses a .git directory:",
|
2014-08-30 21:56:01 +02:00
|
|
|
"the following submodules (or one of their nested "
|
2013-07-26 08:05:17 +02:00
|
|
|
"submodules)\n"
|
|
|
|
"use a .git directory:", files->nr),
|
|
|
|
_("\n(use 'rm -rf' if you really want to remove "
|
|
|
|
"it including all of its history)"),
|
|
|
|
errs);
|
|
|
|
string_list_clear(files, 0);
|
|
|
|
}
|
|
|
|
|
2012-09-26 20:21:13 +02:00
|
|
|
static int check_submodules_use_gitfiles(void)
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
int errs = 0;
|
2013-06-12 10:06:43 +02:00
|
|
|
struct string_list files = STRING_LIST_INIT_NODUP;
|
2012-09-26 20:21:13 +02:00
|
|
|
|
|
|
|
for (i = 0; i < list.nr; i++) {
|
|
|
|
const char *name = list.entry[i].name;
|
|
|
|
int pos;
|
Convert "struct cache_entry *" to "const ..." wherever possible
I attempted to make index_state->cache[] a "const struct cache_entry **"
to find out how existing entries in index are modified and where. The
question I have is what do we do if we really need to keep track of on-disk
changes in the index. The result is
- diff-lib.c: setting CE_UPTODATE
- name-hash.c: setting CE_HASHED
- preload-index.c, read-cache.c, unpack-trees.c and
builtin/update-index: obvious
- entry.c: write_entry() may refresh the checked out entry via
fill_stat_cache_info(). This causes "non-const struct cache_entry
*" in builtin/apply.c, builtin/checkout-index.c and
builtin/checkout.c
- builtin/ls-files.c: --with-tree changes stagemask and may set
CE_UPDATE
Of these, write_entry() and its call sites are probably most
interesting because it modifies on-disk info. But this is stat info
and can be retrieved via refresh, at least for porcelain
commands. Other just uses ce_flags for local purposes.
So, keeping track of "dirty" entries is just a matter of setting a
flag in index modification functions exposed by read-cache.c. Except
unpack-trees, the rest of the code base does not do anything funny
behind read-cache's back.
The actual patch is less valueable than the summary above. But if
anyone wants to re-identify the above sites. Applying this patch, then
this:
diff --git a/cache.h b/cache.h
index 430d021..1692891 100644
--- a/cache.h
+++ b/cache.h
@@ -267,7 +267,7 @@ static inline unsigned int canon_mode(unsigned int mode)
#define cache_entry_size(len) (offsetof(struct cache_entry,name) + (len) + 1)
struct index_state {
- struct cache_entry **cache;
+ const struct cache_entry **cache;
unsigned int version;
unsigned int cache_nr, cache_alloc, cache_changed;
struct string_list *resolve_undo;
will help quickly identify them without bogus warnings.
Signed-off-by: Nguyễn Thái Ngọc Duy <pclouds@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
2013-07-09 17:29:00 +02:00
|
|
|
const struct cache_entry *ce;
|
2012-09-26 20:21:13 +02:00
|
|
|
struct stat st;
|
|
|
|
|
|
|
|
pos = cache_name_pos(name, strlen(name));
|
|
|
|
if (pos < 0) {
|
|
|
|
pos = get_ours_cache_pos(name, pos);
|
|
|
|
if (pos < 0)
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
ce = active_cache[pos];
|
|
|
|
|
|
|
|
if (!S_ISGITLINK(ce->ce_mode) ||
|
|
|
|
(lstat(ce->name, &st) < 0) ||
|
|
|
|
is_empty_dir(name))
|
|
|
|
continue;
|
|
|
|
|
|
|
|
if (!submodule_uses_gitfile(name))
|
2013-06-12 10:06:43 +02:00
|
|
|
string_list_append(&files, name);
|
2012-09-26 20:21:13 +02:00
|
|
|
}
|
2013-07-26 08:05:17 +02:00
|
|
|
|
|
|
|
error_removing_concrete_submodules(&files, &errs);
|
2012-09-26 20:21:13 +02:00
|
|
|
|
|
|
|
return errs;
|
|
|
|
}
|
|
|
|
|
2007-07-13 19:41:38 +02:00
|
|
|
static int check_local_mod(unsigned char *head, int index_only)
|
2006-12-25 12:11:00 +01:00
|
|
|
{
|
2008-11-29 03:41:21 +01:00
|
|
|
/*
|
|
|
|
* Items in list are already sorted in the cache order,
|
2006-12-25 12:11:00 +01:00
|
|
|
* so we could do this a lot more efficiently by using
|
|
|
|
* tree_desc based traversal if we wanted to, but I am
|
|
|
|
* lazy, and who cares if removal of files is a tad
|
|
|
|
* slower than the theoretical maximum speed?
|
|
|
|
*/
|
|
|
|
int i, no_head;
|
|
|
|
int errs = 0;
|
2013-06-12 10:06:43 +02:00
|
|
|
struct string_list files_staged = STRING_LIST_INIT_NODUP;
|
|
|
|
struct string_list files_cached = STRING_LIST_INIT_NODUP;
|
|
|
|
struct string_list files_submodule = STRING_LIST_INIT_NODUP;
|
|
|
|
struct string_list files_local = STRING_LIST_INIT_NODUP;
|
2006-12-25 12:11:00 +01:00
|
|
|
|
|
|
|
no_head = is_null_sha1(head);
|
|
|
|
for (i = 0; i < list.nr; i++) {
|
|
|
|
struct stat st;
|
|
|
|
int pos;
|
Convert "struct cache_entry *" to "const ..." wherever possible
I attempted to make index_state->cache[] a "const struct cache_entry **"
to find out how existing entries in index are modified and where. The
question I have is what do we do if we really need to keep track of on-disk
changes in the index. The result is
- diff-lib.c: setting CE_UPTODATE
- name-hash.c: setting CE_HASHED
- preload-index.c, read-cache.c, unpack-trees.c and
builtin/update-index: obvious
- entry.c: write_entry() may refresh the checked out entry via
fill_stat_cache_info(). This causes "non-const struct cache_entry
*" in builtin/apply.c, builtin/checkout-index.c and
builtin/checkout.c
- builtin/ls-files.c: --with-tree changes stagemask and may set
CE_UPDATE
Of these, write_entry() and its call sites are probably most
interesting because it modifies on-disk info. But this is stat info
and can be retrieved via refresh, at least for porcelain
commands. Other just uses ce_flags for local purposes.
So, keeping track of "dirty" entries is just a matter of setting a
flag in index modification functions exposed by read-cache.c. Except
unpack-trees, the rest of the code base does not do anything funny
behind read-cache's back.
The actual patch is less valueable than the summary above. But if
anyone wants to re-identify the above sites. Applying this patch, then
this:
diff --git a/cache.h b/cache.h
index 430d021..1692891 100644
--- a/cache.h
+++ b/cache.h
@@ -267,7 +267,7 @@ static inline unsigned int canon_mode(unsigned int mode)
#define cache_entry_size(len) (offsetof(struct cache_entry,name) + (len) + 1)
struct index_state {
- struct cache_entry **cache;
+ const struct cache_entry **cache;
unsigned int version;
unsigned int cache_nr, cache_alloc, cache_changed;
struct string_list *resolve_undo;
will help quickly identify them without bogus warnings.
Signed-off-by: Nguyễn Thái Ngọc Duy <pclouds@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
2013-07-09 17:29:00 +02:00
|
|
|
const struct cache_entry *ce;
|
2012-09-26 20:21:13 +02:00
|
|
|
const char *name = list.entry[i].name;
|
2006-12-25 12:11:00 +01:00
|
|
|
unsigned char sha1[20];
|
|
|
|
unsigned mode;
|
2007-07-13 19:41:38 +02:00
|
|
|
int local_changes = 0;
|
|
|
|
int staged_changes = 0;
|
2006-12-25 12:11:00 +01:00
|
|
|
|
|
|
|
pos = cache_name_pos(name, strlen(name));
|
2012-09-26 20:21:13 +02:00
|
|
|
if (pos < 0) {
|
|
|
|
/*
|
|
|
|
* Skip unmerged entries except for populated submodules
|
|
|
|
* that could lose history when removed.
|
|
|
|
*/
|
|
|
|
pos = get_ours_cache_pos(name, pos);
|
|
|
|
if (pos < 0)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
if (!S_ISGITLINK(active_cache[pos]->ce_mode) ||
|
|
|
|
is_empty_dir(name))
|
|
|
|
continue;
|
|
|
|
}
|
2006-12-25 12:11:00 +01:00
|
|
|
ce = active_cache[pos];
|
|
|
|
|
|
|
|
if (lstat(ce->name, &st) < 0) {
|
2013-04-04 21:03:35 +02:00
|
|
|
if (errno != ENOENT && errno != ENOTDIR)
|
2009-03-24 02:09:14 +01:00
|
|
|
warning("'%s': %s", ce->name, strerror(errno));
|
2006-12-25 12:11:00 +01:00
|
|
|
/* It already vanished from the working tree */
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
else if (S_ISDIR(st.st_mode)) {
|
|
|
|
/* if a file was removed and it is now a
|
|
|
|
* directory, that is the same as ENOENT as
|
|
|
|
* far as git is concerned; we do not track
|
2012-09-26 20:21:13 +02:00
|
|
|
* directories unless they are submodules.
|
2006-12-25 12:11:00 +01:00
|
|
|
*/
|
2012-09-26 20:21:13 +02:00
|
|
|
if (!S_ISGITLINK(ce->ce_mode))
|
|
|
|
continue;
|
2006-12-25 12:11:00 +01:00
|
|
|
}
|
2008-11-29 03:41:21 +01:00
|
|
|
|
|
|
|
/*
|
|
|
|
* "rm" of a path that has changes need to be treated
|
|
|
|
* carefully not to allow losing local changes
|
|
|
|
* accidentally. A local change could be (1) file in
|
|
|
|
* work tree is different since the index; and/or (2)
|
|
|
|
* the user staged a content that is different from
|
|
|
|
* the current commit in the index.
|
|
|
|
*
|
|
|
|
* In such a case, you would need to --force the
|
|
|
|
* removal. However, "rm --cached" (remove only from
|
|
|
|
* the index) is safe if the index matches the file in
|
|
|
|
* the work tree or the HEAD commit, as it means that
|
|
|
|
* the content being removed is available elsewhere.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Is the index different from the file in the work tree?
|
2012-09-26 20:21:13 +02:00
|
|
|
* If it's a submodule, is its work tree modified?
|
2008-11-29 03:41:21 +01:00
|
|
|
*/
|
2012-09-26 20:21:13 +02:00
|
|
|
if (ce_match_stat(ce, &st, 0) ||
|
|
|
|
(S_ISGITLINK(ce->ce_mode) &&
|
|
|
|
!ok_to_remove_submodule(ce->name)))
|
2007-07-13 19:41:38 +02:00
|
|
|
local_changes = 1;
|
2008-11-29 03:41:21 +01:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Is the index different from the HEAD commit? By
|
|
|
|
* definition, before the very initial commit,
|
|
|
|
* anything staged in the index is treated by the same
|
|
|
|
* way as changed from the HEAD.
|
|
|
|
*/
|
2007-03-26 20:55:39 +02:00
|
|
|
if (no_head
|
|
|
|
|| get_tree_entry(head, name, sha1, &mode)
|
|
|
|
|| ce->ce_mode != create_ce_mode(mode)
|
|
|
|
|| hashcmp(ce->sha1, sha1))
|
2007-07-13 19:41:38 +02:00
|
|
|
staged_changes = 1;
|
|
|
|
|
2008-11-29 03:41:21 +01:00
|
|
|
/*
|
|
|
|
* If the index does not match the file in the work
|
|
|
|
* tree and if it does not match the HEAD commit
|
|
|
|
* either, (1) "git rm" without --cached definitely
|
|
|
|
* will lose information; (2) "git rm --cached" will
|
|
|
|
* lose information unless it is about removing an
|
|
|
|
* "intent to add" entry.
|
|
|
|
*/
|
|
|
|
if (local_changes && staged_changes) {
|
2008-11-29 04:55:25 +01:00
|
|
|
if (!index_only || !(ce->ce_flags & CE_INTENT_TO_ADD))
|
2013-06-12 10:06:43 +02:00
|
|
|
string_list_append(&files_staged, name);
|
2008-11-29 03:41:21 +01:00
|
|
|
}
|
2007-07-13 19:41:38 +02:00
|
|
|
else if (!index_only) {
|
|
|
|
if (staged_changes)
|
2013-06-12 10:06:43 +02:00
|
|
|
string_list_append(&files_cached, name);
|
2012-09-26 20:21:13 +02:00
|
|
|
if (local_changes) {
|
|
|
|
if (S_ISGITLINK(ce->ce_mode) &&
|
2013-06-12 10:06:43 +02:00
|
|
|
!submodule_uses_gitfile(name))
|
|
|
|
string_list_append(&files_submodule, name);
|
|
|
|
else
|
|
|
|
string_list_append(&files_local, name);
|
2012-09-26 20:21:13 +02:00
|
|
|
}
|
2007-07-13 19:41:38 +02:00
|
|
|
}
|
2006-12-25 12:11:00 +01:00
|
|
|
}
|
2013-06-12 10:06:43 +02:00
|
|
|
print_error_files(&files_staged,
|
|
|
|
Q_("the following file has staged content different "
|
|
|
|
"from both the\nfile and the HEAD:",
|
|
|
|
"the following files have staged content different"
|
|
|
|
" from both the\nfile and the HEAD:",
|
|
|
|
files_staged.nr),
|
|
|
|
_("\n(use -f to force removal)"),
|
|
|
|
&errs);
|
|
|
|
string_list_clear(&files_staged, 0);
|
|
|
|
print_error_files(&files_cached,
|
|
|
|
Q_("the following file has changes "
|
|
|
|
"staged in the index:",
|
|
|
|
"the following files have changes "
|
|
|
|
"staged in the index:", files_cached.nr),
|
|
|
|
_("\n(use --cached to keep the file,"
|
|
|
|
" or -f to force removal)"),
|
|
|
|
&errs);
|
|
|
|
string_list_clear(&files_cached, 0);
|
2013-07-26 08:05:17 +02:00
|
|
|
|
|
|
|
error_removing_concrete_submodules(&files_submodule, &errs);
|
|
|
|
|
2013-06-12 10:06:43 +02:00
|
|
|
print_error_files(&files_local,
|
|
|
|
Q_("the following file has local modifications:",
|
|
|
|
"the following files have local modifications:",
|
|
|
|
files_local.nr),
|
|
|
|
_("\n(use --cached to keep the file,"
|
|
|
|
" or -f to force removal)"),
|
|
|
|
&errs);
|
|
|
|
string_list_clear(&files_local, 0);
|
|
|
|
|
2006-12-25 12:11:00 +01:00
|
|
|
return errs;
|
|
|
|
}
|
|
|
|
|
2006-06-06 21:51:49 +02:00
|
|
|
static struct lock_file lock_file;
|
Add builtin "git rm" command
This changes semantics very subtly, because it adds a new atomicity
guarantee.
In particular, if you "git rm" several files, it will now do all or
nothing. The old shell-script really looped over the removed files one by
one, and would basically randomly fail in the middle if "-f" was used and
one of the files didn't exist in the working directory.
This C builtin one will not re-write the index after each remove, but
instead remove all files at once. However, that means that if "-f" is used
(to also force removal of the file from the working directory), and some
files have already been removed from the workspace, it won't stop in the
middle in some half-way state like the old one did.
So what happens is that if the _first_ file fails to be removed with "-f",
we abort the whole "git rm". But once we've started removing, we don't
leave anything half done. If some of the other files don't exist, we'll
just ignore errors of removal from the working tree.
This is only an issue with "-f", of course.
I think the new behaviour is strictly an improvement, but perhaps more
importantly, it is _different_. As a special case, the semantics are
identical for the single-file case (which is the only one our test-suite
seems to test).
The other question is what to do with leading directories. The old "git
rm" script didn't do anything, which is somewhat inconsistent. This one
will actually clean up directories that have become empty as a result of
removing the last file, but maybe we want to have a flag to decide the
behaviour?
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Signed-off-by: Junio C Hamano <junkio@cox.net>
2006-05-20 01:19:34 +02:00
|
|
|
|
2007-10-05 21:09:19 +02:00
|
|
|
static int show_only = 0, force = 0, index_only = 0, recursive = 0, quiet = 0;
|
|
|
|
static int ignore_unmatch = 0;
|
|
|
|
|
|
|
|
static struct option builtin_rm_options[] = {
|
2012-08-20 14:32:42 +02:00
|
|
|
OPT__DRY_RUN(&show_only, N_("dry run")),
|
|
|
|
OPT__QUIET(&quiet, N_("do not list removed files")),
|
2013-08-03 13:51:19 +02:00
|
|
|
OPT_BOOL( 0 , "cached", &index_only, N_("only remove from the index")),
|
2012-08-20 14:32:42 +02:00
|
|
|
OPT__FORCE(&force, N_("override the up-to-date check")),
|
2013-08-03 13:51:19 +02:00
|
|
|
OPT_BOOL('r', NULL, &recursive, N_("allow recursive removal")),
|
|
|
|
OPT_BOOL( 0 , "ignore-unmatch", &ignore_unmatch,
|
2012-08-20 14:32:42 +02:00
|
|
|
N_("exit with a zero status even if nothing matched")),
|
2007-10-05 21:09:19 +02:00
|
|
|
OPT_END(),
|
|
|
|
};
|
|
|
|
|
2006-07-29 07:44:25 +02:00
|
|
|
int cmd_rm(int argc, const char **argv, const char *prefix)
|
Add builtin "git rm" command
This changes semantics very subtly, because it adds a new atomicity
guarantee.
In particular, if you "git rm" several files, it will now do all or
nothing. The old shell-script really looped over the removed files one by
one, and would basically randomly fail in the middle if "-f" was used and
one of the files didn't exist in the working directory.
This C builtin one will not re-write the index after each remove, but
instead remove all files at once. However, that means that if "-f" is used
(to also force removal of the file from the working directory), and some
files have already been removed from the workspace, it won't stop in the
middle in some half-way state like the old one did.
So what happens is that if the _first_ file fails to be removed with "-f",
we abort the whole "git rm". But once we've started removing, we don't
leave anything half done. If some of the other files don't exist, we'll
just ignore errors of removal from the working tree.
This is only an issue with "-f", of course.
I think the new behaviour is strictly an improvement, but perhaps more
importantly, it is _different_. As a special case, the semantics are
identical for the single-file case (which is the only one our test-suite
seems to test).
The other question is what to do with leading directories. The old "git
rm" script didn't do anything, which is somewhat inconsistent. This one
will actually clean up directories that have become empty as a result of
removing the last file, but maybe we want to have a flag to decide the
behaviour?
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Signed-off-by: Junio C Hamano <junkio@cox.net>
2006-05-20 01:19:34 +02:00
|
|
|
{
|
2014-06-13 14:19:23 +02:00
|
|
|
int i;
|
2013-07-14 10:35:42 +02:00
|
|
|
struct pathspec pathspec;
|
Add builtin "git rm" command
This changes semantics very subtly, because it adds a new atomicity
guarantee.
In particular, if you "git rm" several files, it will now do all or
nothing. The old shell-script really looped over the removed files one by
one, and would basically randomly fail in the middle if "-f" was used and
one of the files didn't exist in the working directory.
This C builtin one will not re-write the index after each remove, but
instead remove all files at once. However, that means that if "-f" is used
(to also force removal of the file from the working directory), and some
files have already been removed from the workspace, it won't stop in the
middle in some half-way state like the old one did.
So what happens is that if the _first_ file fails to be removed with "-f",
we abort the whole "git rm". But once we've started removing, we don't
leave anything half done. If some of the other files don't exist, we'll
just ignore errors of removal from the working tree.
This is only an issue with "-f", of course.
I think the new behaviour is strictly an improvement, but perhaps more
importantly, it is _different_. As a special case, the semantics are
identical for the single-file case (which is the only one our test-suite
seems to test).
The other question is what to do with leading directories. The old "git
rm" script didn't do anything, which is somewhat inconsistent. This one
will actually clean up directories that have become empty as a result of
removing the last file, but maybe we want to have a flag to decide the
behaviour?
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Signed-off-by: Junio C Hamano <junkio@cox.net>
2006-05-20 01:19:34 +02:00
|
|
|
char *seen;
|
|
|
|
|
2013-08-06 21:15:25 +02:00
|
|
|
gitmodules_config();
|
2008-05-14 19:46:53 +02:00
|
|
|
git_config(git_default_config, NULL);
|
Add builtin "git rm" command
This changes semantics very subtly, because it adds a new atomicity
guarantee.
In particular, if you "git rm" several files, it will now do all or
nothing. The old shell-script really looped over the removed files one by
one, and would basically randomly fail in the middle if "-f" was used and
one of the files didn't exist in the working directory.
This C builtin one will not re-write the index after each remove, but
instead remove all files at once. However, that means that if "-f" is used
(to also force removal of the file from the working directory), and some
files have already been removed from the workspace, it won't stop in the
middle in some half-way state like the old one did.
So what happens is that if the _first_ file fails to be removed with "-f",
we abort the whole "git rm". But once we've started removing, we don't
leave anything half done. If some of the other files don't exist, we'll
just ignore errors of removal from the working tree.
This is only an issue with "-f", of course.
I think the new behaviour is strictly an improvement, but perhaps more
importantly, it is _different_. As a special case, the semantics are
identical for the single-file case (which is the only one our test-suite
seems to test).
The other question is what to do with leading directories. The old "git
rm" script didn't do anything, which is somewhat inconsistent. This one
will actually clean up directories that have become empty as a result of
removing the last file, but maybe we want to have a flag to decide the
behaviour?
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Signed-off-by: Junio C Hamano <junkio@cox.net>
2006-05-20 01:19:34 +02:00
|
|
|
|
2009-05-23 20:53:12 +02:00
|
|
|
argc = parse_options(argc, argv, prefix, builtin_rm_options,
|
|
|
|
builtin_rm_usage, 0);
|
2007-10-05 21:09:19 +02:00
|
|
|
if (!argc)
|
|
|
|
usage_with_options(builtin_rm_usage, builtin_rm_options);
|
Add builtin "git rm" command
This changes semantics very subtly, because it adds a new atomicity
guarantee.
In particular, if you "git rm" several files, it will now do all or
nothing. The old shell-script really looped over the removed files one by
one, and would basically randomly fail in the middle if "-f" was used and
one of the files didn't exist in the working directory.
This C builtin one will not re-write the index after each remove, but
instead remove all files at once. However, that means that if "-f" is used
(to also force removal of the file from the working directory), and some
files have already been removed from the workspace, it won't stop in the
middle in some half-way state like the old one did.
So what happens is that if the _first_ file fails to be removed with "-f",
we abort the whole "git rm". But once we've started removing, we don't
leave anything half done. If some of the other files don't exist, we'll
just ignore errors of removal from the working tree.
This is only an issue with "-f", of course.
I think the new behaviour is strictly an improvement, but perhaps more
importantly, it is _different_. As a special case, the semantics are
identical for the single-file case (which is the only one our test-suite
seems to test).
The other question is what to do with leading directories. The old "git
rm" script didn't do anything, which is somewhat inconsistent. This one
will actually clean up directories that have become empty as a result of
removing the last file, but maybe we want to have a flag to decide the
behaviour?
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Signed-off-by: Junio C Hamano <junkio@cox.net>
2006-05-20 01:19:34 +02:00
|
|
|
|
2007-11-03 12:23:13 +01:00
|
|
|
if (!index_only)
|
|
|
|
setup_work_tree();
|
|
|
|
|
2014-06-13 14:19:23 +02:00
|
|
|
hold_locked_index(&lock_file, 1);
|
2008-07-19 18:24:46 +02:00
|
|
|
|
|
|
|
if (read_cache() < 0)
|
2011-02-23 00:42:05 +01:00
|
|
|
die(_("index file corrupt"));
|
2008-07-19 18:24:46 +02:00
|
|
|
|
2013-09-12 21:25:00 +02:00
|
|
|
parse_pathspec(&pathspec, 0,
|
|
|
|
PATHSPEC_PREFER_CWD |
|
|
|
|
PATHSPEC_STRIP_SUBMODULE_SLASH_CHEAP,
|
|
|
|
prefix, argv);
|
2013-07-14 10:35:54 +02:00
|
|
|
refresh_index(&the_index, REFRESH_QUIET, &pathspec, NULL, NULL);
|
2010-01-17 09:43:13 +01:00
|
|
|
|
2013-07-14 10:35:42 +02:00
|
|
|
seen = xcalloc(pathspec.nr, 1);
|
Add builtin "git rm" command
This changes semantics very subtly, because it adds a new atomicity
guarantee.
In particular, if you "git rm" several files, it will now do all or
nothing. The old shell-script really looped over the removed files one by
one, and would basically randomly fail in the middle if "-f" was used and
one of the files didn't exist in the working directory.
This C builtin one will not re-write the index after each remove, but
instead remove all files at once. However, that means that if "-f" is used
(to also force removal of the file from the working directory), and some
files have already been removed from the workspace, it won't stop in the
middle in some half-way state like the old one did.
So what happens is that if the _first_ file fails to be removed with "-f",
we abort the whole "git rm". But once we've started removing, we don't
leave anything half done. If some of the other files don't exist, we'll
just ignore errors of removal from the working tree.
This is only an issue with "-f", of course.
I think the new behaviour is strictly an improvement, but perhaps more
importantly, it is _different_. As a special case, the semantics are
identical for the single-file case (which is the only one our test-suite
seems to test).
The other question is what to do with leading directories. The old "git
rm" script didn't do anything, which is somewhat inconsistent. This one
will actually clean up directories that have become empty as a result of
removing the last file, but maybe we want to have a flag to decide the
behaviour?
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Signed-off-by: Junio C Hamano <junkio@cox.net>
2006-05-20 01:19:34 +02:00
|
|
|
|
|
|
|
for (i = 0; i < active_nr; i++) {
|
Convert "struct cache_entry *" to "const ..." wherever possible
I attempted to make index_state->cache[] a "const struct cache_entry **"
to find out how existing entries in index are modified and where. The
question I have is what do we do if we really need to keep track of on-disk
changes in the index. The result is
- diff-lib.c: setting CE_UPTODATE
- name-hash.c: setting CE_HASHED
- preload-index.c, read-cache.c, unpack-trees.c and
builtin/update-index: obvious
- entry.c: write_entry() may refresh the checked out entry via
fill_stat_cache_info(). This causes "non-const struct cache_entry
*" in builtin/apply.c, builtin/checkout-index.c and
builtin/checkout.c
- builtin/ls-files.c: --with-tree changes stagemask and may set
CE_UPDATE
Of these, write_entry() and its call sites are probably most
interesting because it modifies on-disk info. But this is stat info
and can be retrieved via refresh, at least for porcelain
commands. Other just uses ce_flags for local purposes.
So, keeping track of "dirty" entries is just a matter of setting a
flag in index modification functions exposed by read-cache.c. Except
unpack-trees, the rest of the code base does not do anything funny
behind read-cache's back.
The actual patch is less valueable than the summary above. But if
anyone wants to re-identify the above sites. Applying this patch, then
this:
diff --git a/cache.h b/cache.h
index 430d021..1692891 100644
--- a/cache.h
+++ b/cache.h
@@ -267,7 +267,7 @@ static inline unsigned int canon_mode(unsigned int mode)
#define cache_entry_size(len) (offsetof(struct cache_entry,name) + (len) + 1)
struct index_state {
- struct cache_entry **cache;
+ const struct cache_entry **cache;
unsigned int version;
unsigned int cache_nr, cache_alloc, cache_changed;
struct string_list *resolve_undo;
will help quickly identify them without bogus warnings.
Signed-off-by: Nguyễn Thái Ngọc Duy <pclouds@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
2013-07-09 17:29:00 +02:00
|
|
|
const struct cache_entry *ce = active_cache[i];
|
2014-01-24 14:40:28 +01:00
|
|
|
if (!ce_path_match(ce, &pathspec, seen))
|
Add builtin "git rm" command
This changes semantics very subtly, because it adds a new atomicity
guarantee.
In particular, if you "git rm" several files, it will now do all or
nothing. The old shell-script really looped over the removed files one by
one, and would basically randomly fail in the middle if "-f" was used and
one of the files didn't exist in the working directory.
This C builtin one will not re-write the index after each remove, but
instead remove all files at once. However, that means that if "-f" is used
(to also force removal of the file from the working directory), and some
files have already been removed from the workspace, it won't stop in the
middle in some half-way state like the old one did.
So what happens is that if the _first_ file fails to be removed with "-f",
we abort the whole "git rm". But once we've started removing, we don't
leave anything half done. If some of the other files don't exist, we'll
just ignore errors of removal from the working tree.
This is only an issue with "-f", of course.
I think the new behaviour is strictly an improvement, but perhaps more
importantly, it is _different_. As a special case, the semantics are
identical for the single-file case (which is the only one our test-suite
seems to test).
The other question is what to do with leading directories. The old "git
rm" script didn't do anything, which is somewhat inconsistent. This one
will actually clean up directories that have become empty as a result of
removing the last file, but maybe we want to have a flag to decide the
behaviour?
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Signed-off-by: Junio C Hamano <junkio@cox.net>
2006-05-20 01:19:34 +02:00
|
|
|
continue;
|
2012-09-26 20:21:13 +02:00
|
|
|
ALLOC_GROW(list.entry, list.nr + 1, list.alloc);
|
2013-11-14 20:24:37 +01:00
|
|
|
list.entry[list.nr].name = xstrdup(ce->name);
|
2013-08-06 21:15:25 +02:00
|
|
|
list.entry[list.nr].is_submodule = S_ISGITLINK(ce->ce_mode);
|
|
|
|
if (list.entry[list.nr++].is_submodule &&
|
|
|
|
!is_staging_gitmodules_ok())
|
|
|
|
die (_("Please, stage your changes to .gitmodules or stash them to proceed"));
|
Add builtin "git rm" command
This changes semantics very subtly, because it adds a new atomicity
guarantee.
In particular, if you "git rm" several files, it will now do all or
nothing. The old shell-script really looped over the removed files one by
one, and would basically randomly fail in the middle if "-f" was used and
one of the files didn't exist in the working directory.
This C builtin one will not re-write the index after each remove, but
instead remove all files at once. However, that means that if "-f" is used
(to also force removal of the file from the working directory), and some
files have already been removed from the workspace, it won't stop in the
middle in some half-way state like the old one did.
So what happens is that if the _first_ file fails to be removed with "-f",
we abort the whole "git rm". But once we've started removing, we don't
leave anything half done. If some of the other files don't exist, we'll
just ignore errors of removal from the working tree.
This is only an issue with "-f", of course.
I think the new behaviour is strictly an improvement, but perhaps more
importantly, it is _different_. As a special case, the semantics are
identical for the single-file case (which is the only one our test-suite
seems to test).
The other question is what to do with leading directories. The old "git
rm" script didn't do anything, which is somewhat inconsistent. This one
will actually clean up directories that have become empty as a result of
removing the last file, but maybe we want to have a flag to decide the
behaviour?
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Signed-off-by: Junio C Hamano <junkio@cox.net>
2006-05-20 01:19:34 +02:00
|
|
|
}
|
|
|
|
|
2013-07-14 10:35:42 +02:00
|
|
|
if (pathspec.nr) {
|
|
|
|
const char *original;
|
2007-04-16 09:53:24 +02:00
|
|
|
int seen_any = 0;
|
2013-07-14 10:35:42 +02:00
|
|
|
for (i = 0; i < pathspec.nr; i++) {
|
|
|
|
original = pathspec.items[i].original;
|
2007-04-16 09:53:24 +02:00
|
|
|
if (!seen[i]) {
|
|
|
|
if (!ignore_unmatch) {
|
2011-02-23 00:42:05 +01:00
|
|
|
die(_("pathspec '%s' did not match any files"),
|
2013-07-14 10:35:42 +02:00
|
|
|
original);
|
2007-04-16 09:53:24 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
seen_any = 1;
|
|
|
|
}
|
2006-12-25 12:11:00 +01:00
|
|
|
if (!recursive && seen[i] == MATCHED_RECURSIVELY)
|
2011-02-23 00:42:05 +01:00
|
|
|
die(_("not removing '%s' recursively without -r"),
|
2013-07-14 10:35:42 +02:00
|
|
|
*original ? original : ".");
|
Add builtin "git rm" command
This changes semantics very subtly, because it adds a new atomicity
guarantee.
In particular, if you "git rm" several files, it will now do all or
nothing. The old shell-script really looped over the removed files one by
one, and would basically randomly fail in the middle if "-f" was used and
one of the files didn't exist in the working directory.
This C builtin one will not re-write the index after each remove, but
instead remove all files at once. However, that means that if "-f" is used
(to also force removal of the file from the working directory), and some
files have already been removed from the workspace, it won't stop in the
middle in some half-way state like the old one did.
So what happens is that if the _first_ file fails to be removed with "-f",
we abort the whole "git rm". But once we've started removing, we don't
leave anything half done. If some of the other files don't exist, we'll
just ignore errors of removal from the working tree.
This is only an issue with "-f", of course.
I think the new behaviour is strictly an improvement, but perhaps more
importantly, it is _different_. As a special case, the semantics are
identical for the single-file case (which is the only one our test-suite
seems to test).
The other question is what to do with leading directories. The old "git
rm" script didn't do anything, which is somewhat inconsistent. This one
will actually clean up directories that have become empty as a result of
removing the last file, but maybe we want to have a flag to decide the
behaviour?
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Signed-off-by: Junio C Hamano <junkio@cox.net>
2006-05-20 01:19:34 +02:00
|
|
|
}
|
2007-04-16 09:53:24 +02:00
|
|
|
|
2013-09-09 23:36:15 +02:00
|
|
|
if (!seen_any)
|
2007-04-16 09:53:24 +02:00
|
|
|
exit(0);
|
Add builtin "git rm" command
This changes semantics very subtly, because it adds a new atomicity
guarantee.
In particular, if you "git rm" several files, it will now do all or
nothing. The old shell-script really looped over the removed files one by
one, and would basically randomly fail in the middle if "-f" was used and
one of the files didn't exist in the working directory.
This C builtin one will not re-write the index after each remove, but
instead remove all files at once. However, that means that if "-f" is used
(to also force removal of the file from the working directory), and some
files have already been removed from the workspace, it won't stop in the
middle in some half-way state like the old one did.
So what happens is that if the _first_ file fails to be removed with "-f",
we abort the whole "git rm". But once we've started removing, we don't
leave anything half done. If some of the other files don't exist, we'll
just ignore errors of removal from the working tree.
This is only an issue with "-f", of course.
I think the new behaviour is strictly an improvement, but perhaps more
importantly, it is _different_. As a special case, the semantics are
identical for the single-file case (which is the only one our test-suite
seems to test).
The other question is what to do with leading directories. The old "git
rm" script didn't do anything, which is somewhat inconsistent. This one
will actually clean up directories that have become empty as a result of
removing the last file, but maybe we want to have a flag to decide the
behaviour?
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Signed-off-by: Junio C Hamano <junkio@cox.net>
2006-05-20 01:19:34 +02:00
|
|
|
}
|
|
|
|
|
2006-12-25 12:11:00 +01:00
|
|
|
/*
|
|
|
|
* If not forced, the file, the index and the HEAD (if exists)
|
|
|
|
* must match; but the file can already been removed, since
|
|
|
|
* this sequence is a natural "novice" way:
|
|
|
|
*
|
2007-04-16 10:17:32 +02:00
|
|
|
* rm F; git rm F
|
2006-12-25 12:11:00 +01:00
|
|
|
*
|
|
|
|
* Further, if HEAD commit exists, "diff-index --cached" must
|
|
|
|
* report no changes unless forced.
|
|
|
|
*/
|
|
|
|
if (!force) {
|
|
|
|
unsigned char sha1[20];
|
|
|
|
if (get_sha1("HEAD", sha1))
|
|
|
|
hashclr(sha1);
|
2007-07-13 19:41:38 +02:00
|
|
|
if (check_local_mod(sha1, index_only))
|
2006-12-25 12:11:00 +01:00
|
|
|
exit(1);
|
2012-09-26 20:21:13 +02:00
|
|
|
} else if (!index_only) {
|
|
|
|
if (check_submodules_use_gitfiles())
|
|
|
|
exit(1);
|
2006-12-25 12:11:00 +01:00
|
|
|
}
|
|
|
|
|
Add builtin "git rm" command
This changes semantics very subtly, because it adds a new atomicity
guarantee.
In particular, if you "git rm" several files, it will now do all or
nothing. The old shell-script really looped over the removed files one by
one, and would basically randomly fail in the middle if "-f" was used and
one of the files didn't exist in the working directory.
This C builtin one will not re-write the index after each remove, but
instead remove all files at once. However, that means that if "-f" is used
(to also force removal of the file from the working directory), and some
files have already been removed from the workspace, it won't stop in the
middle in some half-way state like the old one did.
So what happens is that if the _first_ file fails to be removed with "-f",
we abort the whole "git rm". But once we've started removing, we don't
leave anything half done. If some of the other files don't exist, we'll
just ignore errors of removal from the working tree.
This is only an issue with "-f", of course.
I think the new behaviour is strictly an improvement, but perhaps more
importantly, it is _different_. As a special case, the semantics are
identical for the single-file case (which is the only one our test-suite
seems to test).
The other question is what to do with leading directories. The old "git
rm" script didn't do anything, which is somewhat inconsistent. This one
will actually clean up directories that have become empty as a result of
removing the last file, but maybe we want to have a flag to decide the
behaviour?
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Signed-off-by: Junio C Hamano <junkio@cox.net>
2006-05-20 01:19:34 +02:00
|
|
|
/*
|
|
|
|
* First remove the names from the index: we won't commit
|
2006-12-25 12:11:00 +01:00
|
|
|
* the index unless all of them succeed.
|
Add builtin "git rm" command
This changes semantics very subtly, because it adds a new atomicity
guarantee.
In particular, if you "git rm" several files, it will now do all or
nothing. The old shell-script really looped over the removed files one by
one, and would basically randomly fail in the middle if "-f" was used and
one of the files didn't exist in the working directory.
This C builtin one will not re-write the index after each remove, but
instead remove all files at once. However, that means that if "-f" is used
(to also force removal of the file from the working directory), and some
files have already been removed from the workspace, it won't stop in the
middle in some half-way state like the old one did.
So what happens is that if the _first_ file fails to be removed with "-f",
we abort the whole "git rm". But once we've started removing, we don't
leave anything half done. If some of the other files don't exist, we'll
just ignore errors of removal from the working tree.
This is only an issue with "-f", of course.
I think the new behaviour is strictly an improvement, but perhaps more
importantly, it is _different_. As a special case, the semantics are
identical for the single-file case (which is the only one our test-suite
seems to test).
The other question is what to do with leading directories. The old "git
rm" script didn't do anything, which is somewhat inconsistent. This one
will actually clean up directories that have become empty as a result of
removing the last file, but maybe we want to have a flag to decide the
behaviour?
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Signed-off-by: Junio C Hamano <junkio@cox.net>
2006-05-20 01:19:34 +02:00
|
|
|
*/
|
|
|
|
for (i = 0; i < list.nr; i++) {
|
2012-09-26 20:21:13 +02:00
|
|
|
const char *path = list.entry[i].name;
|
2007-04-16 09:46:48 +02:00
|
|
|
if (!quiet)
|
|
|
|
printf("rm '%s'\n", path);
|
Add builtin "git rm" command
This changes semantics very subtly, because it adds a new atomicity
guarantee.
In particular, if you "git rm" several files, it will now do all or
nothing. The old shell-script really looped over the removed files one by
one, and would basically randomly fail in the middle if "-f" was used and
one of the files didn't exist in the working directory.
This C builtin one will not re-write the index after each remove, but
instead remove all files at once. However, that means that if "-f" is used
(to also force removal of the file from the working directory), and some
files have already been removed from the workspace, it won't stop in the
middle in some half-way state like the old one did.
So what happens is that if the _first_ file fails to be removed with "-f",
we abort the whole "git rm". But once we've started removing, we don't
leave anything half done. If some of the other files don't exist, we'll
just ignore errors of removal from the working tree.
This is only an issue with "-f", of course.
I think the new behaviour is strictly an improvement, but perhaps more
importantly, it is _different_. As a special case, the semantics are
identical for the single-file case (which is the only one our test-suite
seems to test).
The other question is what to do with leading directories. The old "git
rm" script didn't do anything, which is somewhat inconsistent. This one
will actually clean up directories that have become empty as a result of
removing the last file, but maybe we want to have a flag to decide the
behaviour?
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Signed-off-by: Junio C Hamano <junkio@cox.net>
2006-05-20 01:19:34 +02:00
|
|
|
|
|
|
|
if (remove_file_from_cache(path))
|
2011-02-23 00:42:05 +01:00
|
|
|
die(_("git rm: unable to remove %s"), path);
|
Add builtin "git rm" command
This changes semantics very subtly, because it adds a new atomicity
guarantee.
In particular, if you "git rm" several files, it will now do all or
nothing. The old shell-script really looped over the removed files one by
one, and would basically randomly fail in the middle if "-f" was used and
one of the files didn't exist in the working directory.
This C builtin one will not re-write the index after each remove, but
instead remove all files at once. However, that means that if "-f" is used
(to also force removal of the file from the working directory), and some
files have already been removed from the workspace, it won't stop in the
middle in some half-way state like the old one did.
So what happens is that if the _first_ file fails to be removed with "-f",
we abort the whole "git rm". But once we've started removing, we don't
leave anything half done. If some of the other files don't exist, we'll
just ignore errors of removal from the working tree.
This is only an issue with "-f", of course.
I think the new behaviour is strictly an improvement, but perhaps more
importantly, it is _different_. As a special case, the semantics are
identical for the single-file case (which is the only one our test-suite
seems to test).
The other question is what to do with leading directories. The old "git
rm" script didn't do anything, which is somewhat inconsistent. This one
will actually clean up directories that have become empty as a result of
removing the last file, but maybe we want to have a flag to decide the
behaviour?
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Signed-off-by: Junio C Hamano <junkio@cox.net>
2006-05-20 01:19:34 +02:00
|
|
|
}
|
|
|
|
|
2006-06-09 06:11:25 +02:00
|
|
|
if (show_only)
|
|
|
|
return 0;
|
|
|
|
|
Add builtin "git rm" command
This changes semantics very subtly, because it adds a new atomicity
guarantee.
In particular, if you "git rm" several files, it will now do all or
nothing. The old shell-script really looped over the removed files one by
one, and would basically randomly fail in the middle if "-f" was used and
one of the files didn't exist in the working directory.
This C builtin one will not re-write the index after each remove, but
instead remove all files at once. However, that means that if "-f" is used
(to also force removal of the file from the working directory), and some
files have already been removed from the workspace, it won't stop in the
middle in some half-way state like the old one did.
So what happens is that if the _first_ file fails to be removed with "-f",
we abort the whole "git rm". But once we've started removing, we don't
leave anything half done. If some of the other files don't exist, we'll
just ignore errors of removal from the working tree.
This is only an issue with "-f", of course.
I think the new behaviour is strictly an improvement, but perhaps more
importantly, it is _different_. As a special case, the semantics are
identical for the single-file case (which is the only one our test-suite
seems to test).
The other question is what to do with leading directories. The old "git
rm" script didn't do anything, which is somewhat inconsistent. This one
will actually clean up directories that have become empty as a result of
removing the last file, but maybe we want to have a flag to decide the
behaviour?
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Signed-off-by: Junio C Hamano <junkio@cox.net>
2006-05-20 01:19:34 +02:00
|
|
|
/*
|
2007-01-11 23:58:47 +01:00
|
|
|
* Then, unless we used "--cached", remove the filenames from
|
2006-12-25 12:11:00 +01:00
|
|
|
* the workspace. If we fail to remove the first one, we
|
Add builtin "git rm" command
This changes semantics very subtly, because it adds a new atomicity
guarantee.
In particular, if you "git rm" several files, it will now do all or
nothing. The old shell-script really looped over the removed files one by
one, and would basically randomly fail in the middle if "-f" was used and
one of the files didn't exist in the working directory.
This C builtin one will not re-write the index after each remove, but
instead remove all files at once. However, that means that if "-f" is used
(to also force removal of the file from the working directory), and some
files have already been removed from the workspace, it won't stop in the
middle in some half-way state like the old one did.
So what happens is that if the _first_ file fails to be removed with "-f",
we abort the whole "git rm". But once we've started removing, we don't
leave anything half done. If some of the other files don't exist, we'll
just ignore errors of removal from the working tree.
This is only an issue with "-f", of course.
I think the new behaviour is strictly an improvement, but perhaps more
importantly, it is _different_. As a special case, the semantics are
identical for the single-file case (which is the only one our test-suite
seems to test).
The other question is what to do with leading directories. The old "git
rm" script didn't do anything, which is somewhat inconsistent. This one
will actually clean up directories that have become empty as a result of
removing the last file, but maybe we want to have a flag to decide the
behaviour?
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Signed-off-by: Junio C Hamano <junkio@cox.net>
2006-05-20 01:19:34 +02:00
|
|
|
* abort the "git rm" (but once we've successfully removed
|
|
|
|
* any file at all, we'll go ahead and commit to it all:
|
2006-07-10 07:50:18 +02:00
|
|
|
* by then we've already committed ourselves and can't fail
|
Add builtin "git rm" command
This changes semantics very subtly, because it adds a new atomicity
guarantee.
In particular, if you "git rm" several files, it will now do all or
nothing. The old shell-script really looped over the removed files one by
one, and would basically randomly fail in the middle if "-f" was used and
one of the files didn't exist in the working directory.
This C builtin one will not re-write the index after each remove, but
instead remove all files at once. However, that means that if "-f" is used
(to also force removal of the file from the working directory), and some
files have already been removed from the workspace, it won't stop in the
middle in some half-way state like the old one did.
So what happens is that if the _first_ file fails to be removed with "-f",
we abort the whole "git rm". But once we've started removing, we don't
leave anything half done. If some of the other files don't exist, we'll
just ignore errors of removal from the working tree.
This is only an issue with "-f", of course.
I think the new behaviour is strictly an improvement, but perhaps more
importantly, it is _different_. As a special case, the semantics are
identical for the single-file case (which is the only one our test-suite
seems to test).
The other question is what to do with leading directories. The old "git
rm" script didn't do anything, which is somewhat inconsistent. This one
will actually clean up directories that have become empty as a result of
removing the last file, but maybe we want to have a flag to decide the
behaviour?
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Signed-off-by: Junio C Hamano <junkio@cox.net>
2006-05-20 01:19:34 +02:00
|
|
|
* in the middle)
|
|
|
|
*/
|
2006-12-25 12:11:00 +01:00
|
|
|
if (!index_only) {
|
2013-08-06 21:15:25 +02:00
|
|
|
int removed = 0, gitmodules_modified = 0;
|
Add builtin "git rm" command
This changes semantics very subtly, because it adds a new atomicity
guarantee.
In particular, if you "git rm" several files, it will now do all or
nothing. The old shell-script really looped over the removed files one by
one, and would basically randomly fail in the middle if "-f" was used and
one of the files didn't exist in the working directory.
This C builtin one will not re-write the index after each remove, but
instead remove all files at once. However, that means that if "-f" is used
(to also force removal of the file from the working directory), and some
files have already been removed from the workspace, it won't stop in the
middle in some half-way state like the old one did.
So what happens is that if the _first_ file fails to be removed with "-f",
we abort the whole "git rm". But once we've started removing, we don't
leave anything half done. If some of the other files don't exist, we'll
just ignore errors of removal from the working tree.
This is only an issue with "-f", of course.
I think the new behaviour is strictly an improvement, but perhaps more
importantly, it is _different_. As a special case, the semantics are
identical for the single-file case (which is the only one our test-suite
seems to test).
The other question is what to do with leading directories. The old "git
rm" script didn't do anything, which is somewhat inconsistent. This one
will actually clean up directories that have become empty as a result of
removing the last file, but maybe we want to have a flag to decide the
behaviour?
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Signed-off-by: Junio C Hamano <junkio@cox.net>
2006-05-20 01:19:34 +02:00
|
|
|
for (i = 0; i < list.nr; i++) {
|
2012-09-26 20:21:13 +02:00
|
|
|
const char *path = list.entry[i].name;
|
|
|
|
if (list.entry[i].is_submodule) {
|
|
|
|
if (is_empty_dir(path)) {
|
|
|
|
if (!rmdir(path)) {
|
|
|
|
removed = 1;
|
2013-08-06 21:15:25 +02:00
|
|
|
if (!remove_path_from_gitmodules(path))
|
|
|
|
gitmodules_modified = 1;
|
2012-09-26 20:21:13 +02:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
struct strbuf buf = STRBUF_INIT;
|
|
|
|
strbuf_addstr(&buf, path);
|
|
|
|
if (!remove_dir_recursively(&buf, 0)) {
|
|
|
|
removed = 1;
|
2013-08-06 21:15:25 +02:00
|
|
|
if (!remove_path_from_gitmodules(path))
|
|
|
|
gitmodules_modified = 1;
|
2012-09-26 20:21:13 +02:00
|
|
|
strbuf_release(&buf);
|
|
|
|
continue;
|
2013-08-06 21:15:25 +02:00
|
|
|
} else if (!file_exists(path))
|
|
|
|
/* Submodule was removed by user */
|
|
|
|
if (!remove_path_from_gitmodules(path))
|
|
|
|
gitmodules_modified = 1;
|
2012-09-26 20:21:13 +02:00
|
|
|
strbuf_release(&buf);
|
|
|
|
/* Fallthrough and let remove_path() fail. */
|
|
|
|
}
|
|
|
|
}
|
2008-09-27 00:59:14 +02:00
|
|
|
if (!remove_path(path)) {
|
Add builtin "git rm" command
This changes semantics very subtly, because it adds a new atomicity
guarantee.
In particular, if you "git rm" several files, it will now do all or
nothing. The old shell-script really looped over the removed files one by
one, and would basically randomly fail in the middle if "-f" was used and
one of the files didn't exist in the working directory.
This C builtin one will not re-write the index after each remove, but
instead remove all files at once. However, that means that if "-f" is used
(to also force removal of the file from the working directory), and some
files have already been removed from the workspace, it won't stop in the
middle in some half-way state like the old one did.
So what happens is that if the _first_ file fails to be removed with "-f",
we abort the whole "git rm". But once we've started removing, we don't
leave anything half done. If some of the other files don't exist, we'll
just ignore errors of removal from the working tree.
This is only an issue with "-f", of course.
I think the new behaviour is strictly an improvement, but perhaps more
importantly, it is _different_. As a special case, the semantics are
identical for the single-file case (which is the only one our test-suite
seems to test).
The other question is what to do with leading directories. The old "git
rm" script didn't do anything, which is somewhat inconsistent. This one
will actually clean up directories that have become empty as a result of
removing the last file, but maybe we want to have a flag to decide the
behaviour?
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Signed-off-by: Junio C Hamano <junkio@cox.net>
2006-05-20 01:19:34 +02:00
|
|
|
removed = 1;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
if (!removed)
|
2009-06-27 17:58:46 +02:00
|
|
|
die_errno("git rm: '%s'", path);
|
Add builtin "git rm" command
This changes semantics very subtly, because it adds a new atomicity
guarantee.
In particular, if you "git rm" several files, it will now do all or
nothing. The old shell-script really looped over the removed files one by
one, and would basically randomly fail in the middle if "-f" was used and
one of the files didn't exist in the working directory.
This C builtin one will not re-write the index after each remove, but
instead remove all files at once. However, that means that if "-f" is used
(to also force removal of the file from the working directory), and some
files have already been removed from the workspace, it won't stop in the
middle in some half-way state like the old one did.
So what happens is that if the _first_ file fails to be removed with "-f",
we abort the whole "git rm". But once we've started removing, we don't
leave anything half done. If some of the other files don't exist, we'll
just ignore errors of removal from the working tree.
This is only an issue with "-f", of course.
I think the new behaviour is strictly an improvement, but perhaps more
importantly, it is _different_. As a special case, the semantics are
identical for the single-file case (which is the only one our test-suite
seems to test).
The other question is what to do with leading directories. The old "git
rm" script didn't do anything, which is somewhat inconsistent. This one
will actually clean up directories that have become empty as a result of
removing the last file, but maybe we want to have a flag to decide the
behaviour?
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Signed-off-by: Junio C Hamano <junkio@cox.net>
2006-05-20 01:19:34 +02:00
|
|
|
}
|
2013-08-06 21:15:25 +02:00
|
|
|
if (gitmodules_modified)
|
|
|
|
stage_updated_gitmodules();
|
Add builtin "git rm" command
This changes semantics very subtly, because it adds a new atomicity
guarantee.
In particular, if you "git rm" several files, it will now do all or
nothing. The old shell-script really looped over the removed files one by
one, and would basically randomly fail in the middle if "-f" was used and
one of the files didn't exist in the working directory.
This C builtin one will not re-write the index after each remove, but
instead remove all files at once. However, that means that if "-f" is used
(to also force removal of the file from the working directory), and some
files have already been removed from the workspace, it won't stop in the
middle in some half-way state like the old one did.
So what happens is that if the _first_ file fails to be removed with "-f",
we abort the whole "git rm". But once we've started removing, we don't
leave anything half done. If some of the other files don't exist, we'll
just ignore errors of removal from the working tree.
This is only an issue with "-f", of course.
I think the new behaviour is strictly an improvement, but perhaps more
importantly, it is _different_. As a special case, the semantics are
identical for the single-file case (which is the only one our test-suite
seems to test).
The other question is what to do with leading directories. The old "git
rm" script didn't do anything, which is somewhat inconsistent. This one
will actually clean up directories that have become empty as a result of
removing the last file, but maybe we want to have a flag to decide the
behaviour?
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Signed-off-by: Junio C Hamano <junkio@cox.net>
2006-05-20 01:19:34 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
if (active_cache_changed) {
|
2014-06-13 14:19:23 +02:00
|
|
|
if (write_locked_index(&the_index, &lock_file, COMMIT_LOCK))
|
2011-02-23 00:42:05 +01:00
|
|
|
die(_("Unable to write new index file"));
|
Add builtin "git rm" command
This changes semantics very subtly, because it adds a new atomicity
guarantee.
In particular, if you "git rm" several files, it will now do all or
nothing. The old shell-script really looped over the removed files one by
one, and would basically randomly fail in the middle if "-f" was used and
one of the files didn't exist in the working directory.
This C builtin one will not re-write the index after each remove, but
instead remove all files at once. However, that means that if "-f" is used
(to also force removal of the file from the working directory), and some
files have already been removed from the workspace, it won't stop in the
middle in some half-way state like the old one did.
So what happens is that if the _first_ file fails to be removed with "-f",
we abort the whole "git rm". But once we've started removing, we don't
leave anything half done. If some of the other files don't exist, we'll
just ignore errors of removal from the working tree.
This is only an issue with "-f", of course.
I think the new behaviour is strictly an improvement, but perhaps more
importantly, it is _different_. As a special case, the semantics are
identical for the single-file case (which is the only one our test-suite
seems to test).
The other question is what to do with leading directories. The old "git
rm" script didn't do anything, which is somewhat inconsistent. This one
will actually clean up directories that have become empty as a result of
removing the last file, but maybe we want to have a flag to decide the
behaviour?
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Signed-off-by: Junio C Hamano <junkio@cox.net>
2006-05-20 01:19:34 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|