Jonas Fonseca <fonseca@xxxxxxx> writes: > Junio C Hamano <junkio@xxxxxxx> wrote Tue, May 22, 2007: >> Alex Riesen <raa.lkml@xxxxxxxxx> writes: >> ... >> > Why should cherry-pick be different? >> >> Good question. FYI >> >> $ git rev-list --huh? >> >> works equally well ;-) > > Because it is different? > > $ git revert --why-must-it-be-so-hard-to-learn-git-sometimes > fatal: Cannot find '--why-must-it-be-so-hard-to-learn-git-sometimes' > > Because, contrary to git-rev-list, git-revert/cherry-pick is considered > part of the porcelain? No, I did not notice it until now but you are right. The command line argument parser for these commands is done somewhat sloppily, compared to others. How about doing something like this instead? -- >8 -- Fix command line parameter parser of revert/cherry-pick The parser was inconsistently done, in that it did not look at the last command line parameter to see if it could be an unknown option, although it was designed to notice unknown options if they were given in positions the command expects to find them (i.e. everything except the last parameter, which ought to be <commit-ish>). This prevented a very natural invocation $ git cherry-pick --help from issuing the usage help. Signed-off-by: Junio C Hamano <junkio@xxxxxxx> --- diff --git a/builtin-revert.c b/builtin-revert.c index ea2f15b..80c348c 100644 --- a/builtin-revert.c +++ b/builtin-revert.c @@ -45,8 +45,10 @@ static void parse_options(int argc, const char **argv) if (argc < 2) usage(usage_str); - for (i = 1; i < argc - 1; i++) { + for (i = 1; i < argc; i++) { arg = argv[i]; + if (arg[0] != '-') + break; if (!strcmp(arg, "-n") || !strcmp(arg, "--no-commit")) no_commit = 1; else if (!strcmp(arg, "-e") || !strcmp(arg, "--edit")) @@ -59,7 +61,8 @@ static void parse_options(int argc, const char **argv) else if (strcmp(arg, "-r")) usage(usage_str); } - + if (i != argc - 1) + usage(usage_str); arg = argv[argc - 1]; if (get_sha1(arg, sha1)) die ("Cannot find '%s'", arg); - To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html