Michele Ballabio a écrit : > > if (argc == 1) > - usage(builtin_verify_tag_usage); > + usage_with_options(builtin_verify_tag_usage, options); It seems this is broken since the C rewrite: "git verify-tag -v" just do nothing instead of printing usage message. Moving the if() after parse_options() call with s/argc == 1/argc == 0/ should do the trick. > - if (!strcmp(argv[i], "-v") || !strcmp(argv[i], "--verbose")) { > - verbose = 1; > - i++; > - } > + argc = parse_options(argc, argv, options, builtin_verify_tag_usage, 0); Olivier. -- 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