diff options
author | Anand V. Avati <avati@dev.gluster.com> | 2009-10-28 07:15:55 -0700 |
---|---|---|
committer | Anand V. Avati <avati@dev.gluster.com> | 2009-10-28 07:15:55 -0700 |
commit | f513157e93bbba885f12f10ca2fb94424d7aea5e (patch) | |
tree | fa3d183abf1300ff1fda52420a2895aefe2f9b7f /format-patch.sh | |
parent | 7e66ba43d7b75b63cdbf08e2d871136a6648a3a7 (diff) |
Add -s (signoff) to format-patch.sh
Diffstat (limited to 'format-patch.sh')
-rwxr-xr-x | format-patch.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/format-patch.sh b/format-patch.sh index 86737042f0b..12d05a03d57 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 BUG:$bug" "$@"; + git format-patch -s --subject-prefix="PATCH BUG:$bug" "$@"; fi } |