Index: git_cl.py |
diff --git a/git_cl.py b/git_cl.py |
index b94be71c872a5c1db9679662fa49cd01da227c58..39c3a8bb241967ce193fad7e5a3e9230794a7978 100755 |
--- a/git_cl.py |
+++ b/git_cl.py |
@@ -2641,7 +2641,8 @@ def PatchIssue(issue_arg, reject, nocommit, directory, auth_config): |
# If we had an issue, commit the current state and register the issue. |
if not nocommit: |
- RunGit(['commit', '-m', ('patch from issue %(i)s at patchset ' |
+ RunGit(['commit', '-m', (cl.GetDescription() + '\n\n' + |
+ 'patch from issue %(i)s at patchset ' |
'%(p)s (http://crrev.com/%(i)s#ps%(p)s)' |
% {'i': issue, 'p': patchset})]) |
cl = Changelist(auth_config=auth_config) |