diff options
author | SZEDER Gábor <szeder@ira.uka.de> | 2010-04-19 11:52:30 +0200 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2010-04-19 17:52:14 -0700 |
commit | 580b7d36055492024c5381b9d4a7d9d766a6a2fa (patch) | |
tree | 882e86523932ce4e022be6e5afc38a0dba0aae36 | |
parent | 8165952517bf82b6a632cefc047ad14f36a74b25 (diff) | |
download | git-580b7d36055492024c5381b9d4a7d9d766a6a2fa.tar.gz |
reflog: remove 'show' from 'expire's usage string
Most of 'expire's options are not recognized by the 'show' subcommand,
hence it errors out.
Signed-off-by: SZEDER Gábor <szeder@ira.uka.de>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
-rw-r--r-- | builtin-reflog.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/builtin-reflog.c b/builtin-reflog.c index 64e45bd813..bd7880dc04 100644 --- a/builtin-reflog.c +++ b/builtin-reflog.c @@ -13,7 +13,7 @@ */ static const char reflog_expire_usage[] = -"git reflog (show|expire) [--verbose] [--dry-run] [--stale-fix] [--expire=<time>] [--expire-unreachable=<time>] [--all] <refs>..."; +"git reflog expire [--verbose] [--dry-run] [--stale-fix] [--expire=<time>] [--expire-unreachable=<time>] [--all] <refs>..."; static const char reflog_delete_usage[] = "git reflog delete [--verbose] [--dry-run] [--rewrite] [--updateref] <refs>..."; |