We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 032b129 + 99d9376 commit f396933Copy full SHA for f396933
utils.py
@@ -55,15 +55,15 @@ def parser_cli():
55
Required if there's no commiter.yml file.
56
"""
57
parser = argparse.ArgumentParser(description=desc)
58
- parser.add_argument("--co-author",
+ parser.add_argument("-ca", "--co-author",
59
help="Make your friend an co-author to the commit",
60
dest="co_author", default='')
61
- parser.add_argument("--no-file", dest="no_file",
+ parser.add_argument("-nf", "--no-file", dest="no_file",
62
help="Disables the creation of a commiter.yml file",
63
action="store_true")
64
- parser.add_argument("--convention", choices=supported_conventions,
+ parser.add_argument("-c", "--convention", choices=supported_conventions,
65
dest="convention", default='', help=help_convention)
66
- parser.add_argument('--debug', action="store_true", dest="debug",
+ parser.add_argument("-d", "--debug", action="store_true", dest="debug",
67
help="Toggles debug option")
68
return parser
69
0 commit comments