X-Git-Url: https://git.distorted.org.uk/~mdw/stgit/blobdiff_plain/1e0754060c4fbf7a35efc8557e8d798a49103324..c40c3500e2475859f051c750ae9ff5cba2f54000:/stgit/stack.py diff --git a/stgit/stack.py b/stgit/stack.py index 0113a1c..26a2fc5 100644 --- a/stgit/stack.py +++ b/stgit/stack.py @@ -601,7 +601,7 @@ class Series: author_name = None, author_email = None, author_date = None, committer_name = None, committer_email = None, - backup = False, log = 'refresh'): + backup = False, sign_str = None, log = 'refresh'): """Generates a new commit for the given patch """ name = self.get_current() @@ -633,6 +633,10 @@ class Series: if not committer_email: committer_email = patch.get_commemail() + if sign_str: + descr = '%s\n%s: %s <%s>\n' % (descr.rstrip(), sign_str, + committer_name, committer_email) + bottom = patch.get_bottom() commit_id = git.commit(files = files,