diff options
author | Philip Oakley <philipoakley@iee.org> | 2013-09-21 16:51:46 +0100 |
---|---|---|
committer | Jonathan Nieder <jrnieder@gmail.com> | 2013-09-27 16:51:27 -0700 |
commit | e49c8f33ab8e401d5d8f308f83e2a2c756377ef1 (patch) | |
tree | 7c7f7c39dc3ec725f209d76e9102d3a21faf819e /builtin/remote.c | |
parent | 159543e8317cd13611dc999efddd3a89c11c1229 (diff) | |
download | git-e49c8f33ab8e401d5d8f308f83e2a2c756377ef1.tar.gz |
remote set-head -h: add long options to synopsispo/remote-set-head-usage
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 <philipoakley@iee.org>
Signed-off-by: Jonathan Nieder <jrnieder@gmail.com>
Diffstat (limited to 'builtin/remote.c')
-rw-r--r-- | builtin/remote.c | 4 |
1 files changed, 2 insertions, 2 deletions
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 <branch>] [-m <master>] [-f] [--tags|--no-tags] [--mirror=<fetch|push>] <name> <url>"), N_("git remote rename <old> <new>"), N_("git remote remove <name>"), - N_("git remote set-head <name> (-a | -d | <branch>)"), + N_("git remote set-head <name> (-a | --auto | -d | --delete |<branch>)"), N_("git remote [-v | --verbose] show [-n] <name>"), N_("git remote prune [-n | --dry-run] <name>"), N_("git remote [-v | --verbose] update [-p | --prune] [(<group> | <remote>)...]"), @@ -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 <name> (-a | -d | <branch>)"), + N_("git remote set-head <name> (-a | --auto | -d | --delete | <branch>)"), NULL }; |