From 70cc55ba0a28192c4e0d5d669e119f5dee9a01f0 Mon Sep 17 00:00:00 2001 From: "Anand V. Avati" Date: Wed, 28 Oct 2009 07:15:55 -0700 Subject: Add -s (signoff) to format-patch.sh --- format-patch.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'format-patch.sh') diff --git a/format-patch.sh b/format-patch.sh index 87af90cb687..e3dfb87ca76 100755 --- a/format-patch.sh +++ b/format-patch.sh @@ -51,9 +51,9 @@ function main() } if [ -z "$bug" ]; then - git format-patch "$@"; + git format-patch -s "$@"; else - git format-patch --subject-prefix="PATCH BRANCH:release-2.0 BUG:$bug" "$@"; + git format-patch -s --subject-prefix="PATCH BRANCH:release-2.0 BUG:$bug" "$@"; fi } -- cgit