Add git completion helper to cl upload
This is similar in spirit to the helper flags in git subcommands, e.g.
try `git branch --git-completion-helper`. It provides a list of long
flags that the subcommands support, without repeating it manually in the
completion script. Note that this special flag is not returned in help,
so there is no noise.
To see the result, source the script, then `git cl upload --<TAB>`.
Change-Id: I82e280ceac5178b0e5fa52611b9a4125e6943337
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/tools/depot_tools/+/2209926
Reviewed-by: Edward Lesmes <ehmaldonado@chromium.org>
Commit-Queue: Zhi An Ng <zhin@chromium.org>
diff --git a/git_cl.py b/git_cl.py
index 01b5d57..4d999ed 100755
--- a/git_cl.py
+++ b/git_cl.py
@@ -4048,10 +4048,17 @@
help='Modify description before upload. Cannot be used '
'with --force. It is a noop when --no-squash is set '
'or a new commit is created.')
+ parser.add_option('--git-completion-helper', action="store_true",
+ help=optparse.SUPPRESS_HELP)
orig_args = args
(options, args) = parser.parse_args(args)
+ if options.git_completion_helper:
+ print(' '.join(opt.get_opt_string() for opt in parser.option_list
+ if opt.help != optparse.SUPPRESS_HELP))
+ return
+
if git_common.is_dirty_git_tree('upload'):
return 1