From: Junio C Hamano Date: Mon, 23 Nov 2009 00:41:54 +0000 (-0800) Subject: Merge branch 'th/maint-remote-update-help-string' X-Git-Tag: v1.6.6-rc0~3 X-Git-Url: https://git.lorimer.id.au/gitweb.git/diff_plain/0a8a38433d7631ea3e2152f890cf92c9b0968948?ds=inline;hp=-c Merge branch 'th/maint-remote-update-help-string' * th/maint-remote-update-help-string: Update 'git remote update' usage string to match man page. --- 0a8a38433d7631ea3e2152f890cf92c9b0968948 diff --combined builtin-remote.c index c361e2ddb0,c4edb86530..b08608ef96 --- a/builtin-remote.c +++ b/builtin-remote.c @@@ -12,48 -12,13 +12,48 @@@ static const char * const builtin_remot "git remote add [-t ] [-m ] [-f] [--mirror] ", "git remote rename ", "git remote rm ", - "git remote set-head [-a | -d | ]", - "git remote show [-n] ", + "git remote set-head (-a | -d | )", + "git remote [-v | --verbose] show [-n] ", "git remote prune [-n | --dry-run] ", - "git remote [-v | --verbose] update [-p | --prune] [group]", + "git remote [-v | --verbose] update [-p | --prune] [group | remote]", NULL }; +static const char * const builtin_remote_add_usage[] = { + "git remote add [] ", + NULL +}; + +static const char * const builtin_remote_rename_usage[] = { + "git remote rename ", + NULL +}; + +static const char * const builtin_remote_rm_usage[] = { + "git remote rm ", + NULL +}; + +static const char * const builtin_remote_sethead_usage[] = { + "git remote set-head (-a | -d | ])", + NULL +}; + +static const char * const builtin_remote_show_usage[] = { + "git remote show [] ", + NULL +}; + +static const char * const builtin_remote_prune_usage[] = { + "git remote prune [] ", + NULL +}; + +static const char * const builtin_remote_update_usage[] = { + "git remote update [] [ | ]...", + NULL +}; + #define GET_REF_STATES (1<<0) #define GET_HEAD_NAMES (1<<1) #define GET_PUSH_REF_STATES (1<<2) @@@ -105,6 -70,7 +105,6 @@@ static int add(int argc, const char **a int i; struct option options[] = { - OPT_GROUP("add specific options"), OPT_BOOLEAN('f', "fetch", &fetch, "fetch the remote branches"), OPT_CALLBACK('t', "track", &track, "branch", "branch(es) to track", opt_parse_track), @@@ -113,11 -79,11 +113,11 @@@ OPT_END() }; - argc = parse_options(argc, argv, NULL, options, builtin_remote_usage, + argc = parse_options(argc, argv, NULL, options, builtin_remote_add_usage, 0); if (argc < 2) - usage_with_options(builtin_remote_usage, options); + usage_with_options(builtin_remote_add_usage, options); name = argv[0]; url = argv[1]; @@@ -574,7 -540,7 +574,7 @@@ static int mv(int argc, const char **ar int i; if (argc != 3) - usage_with_options(builtin_remote_usage, options); + usage_with_options(builtin_remote_rename_usage, options); rename.old = argv[1]; rename.new = argv[2]; @@@ -715,7 -681,7 +715,7 @@@ static int rm(int argc, const char **ar int i, result; if (argc != 2) - usage_with_options(builtin_remote_usage, options); + usage_with_options(builtin_remote_rm_usage, options); remote = remote_get(argv[1]); if (!remote) @@@ -987,7 -953,7 +987,7 @@@ static int show_push_info_item(struct s status = "up to date"; break; case PUSH_STATUS_FASTFORWARD: - status = "fast forwardable"; + status = "fast-forwardable"; break; case PUSH_STATUS_OUTOFDATE: status = "local out of date"; @@@ -1010,6 -976,7 +1010,6 @@@ static int show(int argc, const char ** { int no_query = 0, result = 0, query_flag = 0; struct option options[] = { - OPT_GROUP("show specific options"), OPT_BOOLEAN('n', NULL, &no_query, "do not query remotes"), OPT_END() }; @@@ -1017,7 -984,7 +1017,7 @@@ struct string_list info_list = { NULL, 0, 0, 0 }; struct show_info info; - argc = parse_options(argc, argv, NULL, options, builtin_remote_usage, + argc = parse_options(argc, argv, NULL, options, builtin_remote_show_usage, 0); if (argc < 1) @@@ -1114,13 -1081,14 +1114,13 @@@ static int set_head(int argc, const cha char *head_name = NULL; struct option options[] = { - OPT_GROUP("set-head specific options"), OPT_BOOLEAN('a', "auto", &opt_a, "set refs/remotes//HEAD according to remote"), OPT_BOOLEAN('d', "delete", &opt_d, "delete refs/remotes//HEAD"), OPT_END() }; - argc = parse_options(argc, argv, NULL, options, builtin_remote_usage, + argc = parse_options(argc, argv, NULL, options, builtin_remote_sethead_usage, 0); if (argc) strbuf_addf(&buf, "refs/remotes/%s/HEAD", argv[0]); @@@ -1146,7 -1114,7 +1146,7 @@@ if (delete_ref(buf.buf, NULL, REF_NODEREF)) result |= error("Could not delete %s", buf.buf); } else - usage_with_options(builtin_remote_usage, options); + usage_with_options(builtin_remote_sethead_usage, options); if (head_name) { unsigned char sha1[20]; @@@ -1170,15 -1138,16 +1170,15 @@@ static int prune(int argc, const char * { int dry_run = 0, result = 0; struct option options[] = { - OPT_GROUP("prune specific options"), OPT__DRY_RUN(&dry_run), OPT_END() }; - argc = parse_options(argc, argv, NULL, options, builtin_remote_usage, + argc = parse_options(argc, argv, NULL, options, builtin_remote_prune_usage, 0); if (argc < 1) - usage_with_options(builtin_remote_usage, options); + usage_with_options(builtin_remote_prune_usage, options); for (; argc; argc--, argv++) result |= prune_remote(*argv, dry_run); @@@ -1259,12 -1228,13 +1259,12 @@@ static int update(int argc, const char struct string_list list = { NULL, 0, 0, 0 }; static const char *default_argv[] = { NULL, "default", NULL }; struct option options[] = { - OPT_GROUP("update specific options"), OPT_BOOLEAN('p', "prune", &prune, "prune remotes after fetching"), OPT_END() }; - argc = parse_options(argc, argv, NULL, options, builtin_remote_usage, + argc = parse_options(argc, argv, NULL, options, builtin_remote_update_usage, PARSE_OPT_KEEP_ARGV0); if (argc < 2) { argc = 2; @@@ -1364,7 -1334,7 +1364,7 @@@ static int show_all(void int cmd_remote(int argc, const char **argv, const char *prefix) { struct option options[] = { - OPT__VERBOSE(&verbose), + OPT_BOOLEAN('v', "verbose", &verbose, "be verbose; must be placed before a subcommand"), OPT_END() }; int result;