summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 33b8303)
raw | patch | inline | side by side (parent: 33b8303)
author | Johannes Schindelin <Johannes.Schindelin@gmx.de> | |
Fri, 12 Aug 2005 13:32:42 +0000 (15:32 +0200) | ||
committer | Junio C Hamano <junkio@cox.net> | |
Fri, 12 Aug 2005 17:38:21 +0000 (10:38 -0700) |
This adds the option "--sign" to git-format-patch-script which adds
a Signed-off-by: line automatically.
Signed-off-by: Johannes Schindelin <Johannes.Schindelin@gmx.de>
Signed-off-by: Junio C Hamano <junkio@cox.net>
a Signed-off-by: line automatically.
Signed-off-by: Johannes Schindelin <Johannes.Schindelin@gmx.de>
Signed-off-by: Junio C Hamano <junkio@cox.net>
git-format-patch-script | patch | blob | history |
index c0081697da68fb789c5e94dc88f71d2ef6403e49..ebe6616494fb81ec3d480cecd93fee0d83f3555f 100755 (executable)
--- a/git-format-patch-script
+++ b/git-format-patch-script
. git-sh-setup-script || die "Not a git archive."
usage () {
- echo >&2 "usage: $0"' [-n] [-o dir] [--mbox] [--check] [-<diff options>...] upstream [ our-head ]
+ echo >&2 "usage: $0"' [-n] [-o dir] [--mbox] [--check] [--sign] [-<diff options>...] upstream [ our-head ]
Prepare each commit with its patch since our-head forked from upstream,
one file per patch, for e-mail submission. Each output file is
date=t author=t mbox=t ;;
-n|--n|--nu|--num|--numb|--numbe|--number|--numbere|--numbered)
numbered=t ;;
+ -s|--s|--si|--sig|--sign)
+ signoff=t ;;
-o=*|--o=*|--ou=*|--out=*|--outp=*|--outpu=*|--output=*|--output-=*|\
--output-d=*|--output-di=*|--output-dir=*|--output-dire=*|\
--output-direc=*|--output-direct=*|--output-directo=*|\
b body'
sed -ne "$mailScript" <$commsg
+
+ test "$signoff" = "t" && {
+ offsigner=`git-var GIT_COMMITTER_IDENT | sed -e 's/>.*/>/'`
+ echo
+ echo "Signed-off-by: $offsigner"
+ echo
+ }
+
echo '---'
echo
git-diff-tree -p $diff_opts "$commit" | git-apply --stat --summary