diff options
author | Christian Couder <chriscool@tuxfamily.org> | 2006-09-20 06:21:25 +0200 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2006-09-20 08:35:48 -0700 |
commit | 9c13359aaf3176428603cc9dfbdf30da889ab3d3 (patch) | |
tree | 809a9a404af52b9b270ada6319669c4bfd79b7ff /builtin-show-ref.c | |
parent | 9581e0fca225927dbcbdf03fe70a1d2711ddc6b9 (diff) | |
download | git-9c13359aaf3176428603cc9dfbdf30da889ab3d3.tar.gz |
Fix show-ref usage for --dereference.
Signed-off-by: Christian Couder <chriscool@tuxfamily.org>
Signed-off-by: Junio C Hamano <junkio@cox.net>
Diffstat (limited to 'builtin-show-ref.c')
-rw-r--r-- | builtin-show-ref.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/builtin-show-ref.c b/builtin-show-ref.c index 577d934273..fab359bb42 100644 --- a/builtin-show-ref.c +++ b/builtin-show-ref.c @@ -3,7 +3,7 @@ #include "object.h" #include "tag.h" -static const char show_ref_usage[] = "git show-ref [-q|--quiet] [--verify] [-h|--head] [-d|--deref] [-s|--hash] [--tags] [--heads] [--] [pattern*]"; +static const char show_ref_usage[] = "git show-ref [-q|--quiet] [--verify] [-h|--head] [-d|--dereference] [-s|--hash] [--tags] [--heads] [--] [pattern*]"; static int deref_tags = 0, show_head = 0, tags_only = 0, heads_only = 0, found_match = 0, verify = 0, quiet = 0, hash_only = 0; |