X-Git-Url: https://git.distorted.org.uk/~mdw/stgit/blobdiff_plain/05d593c088d335e86573a2d4bc63ff308bde759b..6ad48e4898f40d58a236de38f0f49a9f8bfb7ab2:/stgit/commands/refresh.py diff --git a/stgit/commands/refresh.py b/stgit/commands/refresh.py index f5cb2e9..48b406a 100644 --- a/stgit/commands/refresh.py +++ b/stgit/commands/refresh.py @@ -44,6 +44,9 @@ options = [make_option('-f', '--force', help = 'invoke an editor for the patch '\ 'description', action = 'store_true'), + make_option('-s', '--showpatch', + help = 'show the patch content in the editor buffer', + action = 'store_true'), make_option('-m', '--message', help = 'use MESSAGE as the patch ' \ 'description'), @@ -96,6 +99,7 @@ def func(parser, options, args): resolved_all() crt_series.refresh_patch(message = options.message, edit = options.edit, + show_patch = options.showpatch, author_name = options.authname, author_email = options.authemail, author_date = options.authdate,