From e1ad70be73ebf563735dd854075169bd10a9360b Mon Sep 17 00:00:00 2001 From: "Owen W. Taylor" Date: Thu, 1 Mar 2012 15:31:33 -0500 Subject: apply: ask the user to double-check author and subject The author and subject might be wrong (especially the subject), when we make up a commit message for a plain patch, so ask the user to double check. --- git-bz | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/git-bz b/git-bz index 0ad6021..bba5de5 100755 --- a/git-bz +++ b/git-bz @@ -1659,6 +1659,12 @@ Date: %s Subject: %s """ % (name, email, patch.date, patch.description) patch.data = headers + "\n\nFIXME: need commit message\n---\n" + patch.data + patch.data = headers + """ + +FIXME: need commit message. +(Please also double check the author and subject.) +--- +"""" + patch.data need_amend = True else: need_amend = False -- cgit v1.2.3