From: george espinoza <gespinoz2019@xxxxxxxxx> This command currently handles its own argv so by teaching it to use parse-options instead we can standardize the way commands handle user input across the project. As a consequence of using OPT_BOOL data structure on --normalize & --refspec-pattern, --no-normalize & --no-refspec-pattern can now be used. NO_PARSEOPT flag was also removed to update git.c with the conversion of the structure in this command. This is a rough draft and I need some advice if I'm doing this correctly since its being built but it is failing tests. Helped by: emily shaffer emilyshaffer@xxxxxxxxxx Helped by: johannes schindelin johannes.schindelin@xxxxxx Signed-off-by: george espinoza <gespinoz2019@xxxxxxxxx> --- builtin/check-ref-format.c | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) diff --git a/builtin/check-ref-format.c b/builtin/check-ref-format.c index 3fe0b5410a..c48fb19eda 100644 --- a/builtin/check-ref-format.c +++ b/builtin/check-ref-format.c @@ -61,10 +61,8 @@ int cmd_check_ref_format(int argc, const char **argv, const char *prefix) }; int i = 0; - int verbose; - int normalize; - int allow_onelevel; - int refspec_pattern; + int verbose = 0; + int normalize = 0; int flags = 0; const char *refname; @@ -73,12 +71,13 @@ int cmd_check_ref_format(int argc, const char **argv, const char *prefix) OPT_GROUP(""), OPT_CMDMODE( 0 , "branch", &check_ref_format_branch, N_("branch"), CHECK_REF_FORMAT_BRANCH), OPT_BOOL( 0 , "normalize", &normalize, N_("normalize tracked files")), - OPT_BOOL( 0 , "allow-onelevel", &allow_onelevel, N_("allow one level")), - OPT_BOOL( 0 , "refspec-pattern", &refspec_pattern, N_("refspec pattern")), + OPT_BIT( 0 , "allow-onelevel", &flags, N_("allow one level"), REFNAME_ALLOW_ONELEVEL), + OPT_NEGBIT( 0, "no-allow-onelevel", &flags, N_("no allow one level"), REFNAME_ALLOW_ONELEVEL), + OPT_BIT( 0 , "refspec-pattern", &flags, N_("refspec pattern"), REFNAME_REFSPEC_PATTERN), OPT_END(), }; - argc = parse_options(argc, argv, prefix, options, builtin_check_ref_format_usage, PARSE_OPT_KEEP_ARGV0); + argc = parse_options(argc, argv, prefix, options, builtin_check_ref_format_usage, 0); refname = argv[i]; if (normalize) -- gitgitgadget