aboutsummaryrefslogtreecommitdiffstats
path: root/update-cache.c
diff options
context:
space:
mode:
authorLinus Torvalds <torvalds@ppc970.osdl.org>2005-04-10 11:32:54 -0700
committerLinus Torvalds <torvalds@ppc970.osdl.org>2005-04-10 11:32:54 -0700
commit121481abf8d752ef871821d4ab9a3747595d86ae (patch)
tree6722a6e40e1edeeec7cd4c527a16a51553074130 /update-cache.c
parentd6d3f9d0125a7215f3cdc2600b2307ca55b69536 (diff)
downloadgit-121481abf8d752ef871821d4ab9a3747595d86ae.tar.gz
Make "update-cache" a bit friendlier to use (and harder to mis-use).
It now requires the "--add" flag before you add any new files, and a "--remove" file if you want to mark files for removal. And giving it the "--refresh" flag makes it just update all the files that it already knows about.
Diffstat (limited to 'update-cache.c')
-rw-r--r--update-cache.c60
1 files changed, 57 insertions, 3 deletions
diff --git a/update-cache.c b/update-cache.c
index 03b111bfc0..942e309fe6 100644
--- a/update-cache.c
+++ b/update-cache.c
@@ -5,6 +5,15 @@
*/
#include "cache.h"
+/*
+ * Default to not allowing changes to the list of files. The
+ * tool doesn't actually care, but this makes it harder to add
+ * files to the revision control by mistake by doing something
+ * like "update-cache *" and suddenly having all the object
+ * files be revision controlled.
+ */
+static int allow_add = 0, allow_remove = 0;
+
static int index_fd(const char *path, int namelen, struct cache_entry *ce, int fd, struct stat *st)
{
z_stream stream;
@@ -57,8 +66,10 @@ static int add_file_to_cache(char *path)
fd = open(path, O_RDONLY);
if (fd < 0) {
- if (errno == ENOENT)
- return remove_file_from_cache(path);
+ if (errno == ENOENT) {
+ if (allow_remove)
+ return remove_file_from_cache(path);
+ }
return -1;
}
if (fstat(fd, &st) < 0) {
@@ -85,7 +96,29 @@ static int add_file_to_cache(char *path)
if (index_fd(path, namelen, ce, fd, &st) < 0)
return -1;
- return add_cache_entry(ce);
+ return add_cache_entry(ce, allow_add);
+}
+
+static void refresh_entry(struct cache_entry *ce)
+{
+ /*
+ * This is really not the right way to do it, but
+ * add_file_to_cache() does do the right thing.
+ *
+ * We should really just update the cache
+ * entry in-place, I think. With this approach we
+ * end up allocating a new one, searching for where
+ * to insert it etc etc crud.
+ */
+ add_file_to_cache(ce->name);
+}
+
+static void refresh_cache(void)
+{
+ int i;
+
+ for (i = 0; i < active_nr; i++)
+ refresh_entry(active_cache[i]);
}
/*
@@ -119,6 +152,7 @@ inside:
int main(int argc, char **argv)
{
int i, newfd, entries;
+ int allow_options = 1;
entries = read_cache();
if (entries < 0) {
@@ -133,6 +167,26 @@ int main(int argc, char **argv)
}
for (i = 1 ; i < argc; i++) {
char *path = argv[i];
+
+ if (allow_options && *path == '-') {
+ if (!strcmp(path, "--")) {
+ allow_options = 0;
+ continue;
+ }
+ if (!strcmp(path, "--add")) {
+ allow_add = 1;
+ continue;
+ }
+ if (!strcmp(path, "--remove")) {
+ allow_remove = 1;
+ continue;
+ }
+ if (!strcmp(path, "--refresh")) {
+ refresh_cache();
+ continue;
+ }
+ usage("unknown option %s", path);
+ }
if (!verify_path(path)) {
fprintf(stderr, "Ignoring path %s\n", argv[i]);
continue;