diff options
author | Junio C Hamano <gitster@pobox.com> | 2021-10-03 21:49:20 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2021-10-03 21:49:20 -0700 |
commit | 0a2b53c2f2dda0ffc74c87b9fe46711b458bce2d (patch) | |
tree | f2603ecfc81484e0a1e42a27ecfa56d2718e684f | |
parent | Merge branch 'ab/auto-depend-with-pedantic' (diff) | |
parent | bundle: remove ignored & undocumented "--verbose" flag (diff) | |
download | tgif-0a2b53c2f2dda0ffc74c87b9fe46711b458bce2d.tar.xz |
Merge branch 'ab/bundle-remove-verbose-option'
Doc update.
* ab/bundle-remove-verbose-option:
bundle: remove ignored & undocumented "--verbose" flag
-rw-r--r-- | builtin/bundle.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/builtin/bundle.c b/builtin/bundle.c index 91975def2d..5a85d7cd0f 100644 --- a/builtin/bundle.c +++ b/builtin/bundle.c @@ -39,8 +39,6 @@ static const char * const builtin_bundle_unbundle_usage[] = { NULL }; -static int verbose; - static int parse_options_cmd_bundle(int argc, const char **argv, const char* prefix, @@ -197,7 +195,6 @@ cleanup: int cmd_bundle(int argc, const char **argv, const char *prefix) { struct option options[] = { - OPT__VERBOSE(&verbose, N_("be verbose; must be placed before a subcommand")), OPT_END() }; int result; |