From: Philip Oakley Date: Sat, 21 Sep 2013 15:51:46 +0000 (+0100) Subject: remote set-head -h: add long options to synopsis X-Git-Tag: v1.8.5-rc0~63^2 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=e49c8f33ab8e401d5d8f308f83e2a2c756377ef1;p=thirdparty%2Fgit.git remote set-head -h: add long options to synopsis Document --auto and --delete alongside their short forms -a and -d in the first line of 'git remote set-head -h' output. Signed-off-by: Philip Oakley Signed-off-by: Jonathan Nieder --- diff --git a/builtin/remote.c b/builtin/remote.c index 5e54d367b8..aa008a50a5 100644 --- a/builtin/remote.c +++ b/builtin/remote.c @@ -12,7 +12,7 @@ static const char * const builtin_remote_usage[] = { N_("git remote add [-t ] [-m ] [-f] [--tags|--no-tags] [--mirror=] "), N_("git remote rename "), N_("git remote remove "), - N_("git remote set-head (-a | -d | )"), + N_("git remote set-head (-a | --auto | -d | --delete |)"), N_("git remote [-v | --verbose] show [-n] "), N_("git remote prune [-n | --dry-run] "), N_("git remote [-v | --verbose] update [-p | --prune] [( | )...]"), @@ -39,7 +39,7 @@ static const char * const builtin_remote_rm_usage[] = { }; static const char * const builtin_remote_sethead_usage[] = { - N_("git remote set-head (-a | -d | )"), + N_("git remote set-head (-a | --auto | -d | --delete | )"), NULL };