summaryrefslogtreecommitdiff
path: root/builtin-update-index.c
diff options
context:
space:
mode:
authorJunio C Hamano <junkio@cox.net>2006-08-24 04:24:47 (GMT)
committerJunio C Hamano <junkio@cox.net>2006-08-24 04:24:47 (GMT)
commit7099c9c7c9c14ca3f66b8a04219162e6f259ff37 (patch)
tree0e395b92769a274a8f240dfa710974f588ea793c /builtin-update-index.c
parent5df7dbbae4a51e20afc00acc5c87ea4536d1302c (diff)
downloadgit-7099c9c7c9c14ca3f66b8a04219162e6f259ff37.zip
git-7099c9c7c9c14ca3f66b8a04219162e6f259ff37.tar.gz
git-7099c9c7c9c14ca3f66b8a04219162e6f259ff37.tar.bz2
update-index -g
I often find myself typing this but the common abbreviation "g" for "again" has not been supported so far for some unknown reason. Signed-off-by: Junio C Hamano <junkio@cox.net>
Diffstat (limited to 'builtin-update-index.c')
-rw-r--r--builtin-update-index.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/builtin-update-index.c b/builtin-update-index.c
index 5dd91af..75c0abb 100644
--- a/builtin-update-index.c
+++ b/builtin-update-index.c
@@ -306,7 +306,7 @@ static void read_index_info(int line_termination)
}
static const char update_index_usage[] =
-"git-update-index [-q] [--add] [--replace] [--remove] [--unmerged] [--refresh] [--really-refresh] [--cacheinfo] [--chmod=(+|-)x] [--assume-unchanged] [--info-only] [--force-remove] [--stdin] [--index-info] [--unresolve] [--again] [--ignore-missing] [-z] [--verbose] [--] <file>...";
+"git-update-index [-q] [--add] [--replace] [--remove] [--unmerged] [--refresh] [--really-refresh] [--cacheinfo] [--chmod=(+|-)x] [--assume-unchanged] [--info-only] [--force-remove] [--stdin] [--index-info] [--unresolve] [--again | -g] [--ignore-missing] [-z] [--verbose] [--] <file>...";
static unsigned char head_sha1[20];
static unsigned char merge_head_sha1[20];
@@ -595,7 +595,7 @@ int cmd_update_index(int argc, const char **argv, const char *prefix)
active_cache_changed = 0;
goto finish;
}
- if (!strcmp(path, "--again")) {
+ if (!strcmp(path, "--again") || !strcmp(path, "-g")) {
has_errors = do_reupdate(argc - i, argv + i,
prefix, prefix_length);
if (has_errors)