From: Christian Couder Date: Wed, 20 Sep 2006 04:21:25 +0000 (+0200) Subject: Fix show-ref usage for --dereference. X-Git-Tag: v1.4.4-rc1~43^2~19^2~1 X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=9c13359aaf3176428603cc9dfbdf30da889ab3d3;p=git.git Fix show-ref usage for --dereference. Signed-off-by: Christian Couder Signed-off-by: Junio C Hamano --- diff --git a/builtin-show-ref.c b/builtin-show-ref.c index 577d93427..fab359bb4 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;