Let "stg new" support --file and --save-template in addition to
--message. This is useful for scripting.
Signed-off-by: Karl Hasselström <kha@treskal.com>
line of the commit message."""
directory = common.DirectoryHasRepositoryLib()
line of the commit message."""
directory = common.DirectoryHasRepositoryLib()
-options = [make_option('-m', '--message',
- help = 'use MESSAGE as the patch description'),
- ] + (utils.make_author_committer_options()
- + utils.make_sign_options())
+options = (utils.make_author_committer_options()
+ + utils.make_message_options() + utils.make_sign_options())
def func(parser, options, args):
"""Create a new patch."""
def func(parser, options, args):
"""Create a new patch."""
utils.add_sign_line(cd.message, options.sign_str,
cd.committer.name, cd.committer.email))
utils.add_sign_line(cd.message, options.sign_str,
cd.committer.name, cd.committer.email))
+ if options.save_template:
+ options.save_template(cd.message)
+ return utils.STGIT_SUCCESS
+
# Let user edit the commit message manually.
if not options.message:
cd = cd.set_message(utils.edit_string(cd.message, '.stgit-new.txt'))
# Let user edit the commit message manually.
if not options.message:
cd = cd.set_message(utils.edit_string(cd.message, '.stgit-new.txt'))