From: Petr Baudis Date: Tue, 25 Oct 2005 15:26:25 +0000 (+0200) Subject: Add usage string to git-update-index X-Git-Tag: v0.99.9~44 X-Git-Url: https://git.octo.it/?a=commitdiff_plain;h=f6ab5bb265ac821d9aab3755059eeadb615f512b;p=git.git Add usage string to git-update-index This patch adds usage string to git-update-index, can be printed by the -h or --help parameter. Signed-off-by: Petr Baudis Signed-off-by: Junio C Hamano --- diff --git a/update-index.c b/update-index.c index a84836be..661b86a9 100644 --- a/update-index.c +++ b/update-index.c @@ -392,6 +392,9 @@ static void read_index_info(int line_termination) } } +static const char update_index_usage[] = +"git-update-index [-q] [--add] [--replace] [--remove] [--unmerged] [--refresh] [--cacheinfo] [--chmod=(+|-)x] [--info-only] [--force-remove] [--stdin] [--index-info] [--ignore-missing] [-z] [--version] [--] ..."; + int main(int argc, const char **argv) { int i, newfd, entries, has_errors = 0, line_termination = '\n'; @@ -489,6 +492,8 @@ int main(int argc, const char **argv) verbose = 1; continue; } + if (!strcmp(path, "-h") || !strcmp(path, "--help")) + usage(update_index_usage); die("unknown option %s", path); } update_one(path, prefix, prefix_length);