diff options
author | Junio C Hamano <gitster@pobox.com> | 2013-03-21 14:02:48 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2013-03-21 14:02:48 -0700 |
commit | 6d7e0c522eba6eb020192eb56ad8a01dc430197e (patch) | |
tree | 5b174c1d65fcf33cd346c9dfed7d928b00ab6b35 | |
parent | Merge branch 'jc/perl-cat-blob' (diff) | |
parent | update-index: allow "-h" to also display options (diff) | |
download | tgif-6d7e0c522eba6eb020192eb56ad8a01dc430197e.tar.xz |
Merge branch 'ap/maint-update-index-h-is-for-help'
"git update-index -h" did not do the usual "-h(elp)" thing.
* ap/maint-update-index-h-is-for-help:
update-index: allow "-h" to also display options
-rw-r--r-- | builtin/update-index.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/builtin/update-index.c b/builtin/update-index.c index ada1dff846..5c7762eef4 100644 --- a/builtin/update-index.c +++ b/builtin/update-index.c @@ -796,7 +796,7 @@ int cmd_update_index(int argc, const char **argv, const char *prefix) }; if (argc == 2 && !strcmp(argv[1], "-h")) - usage(update_index_usage[0]); + usage_with_options(update_index_usage, options); git_config(git_default_config, NULL); |