summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 2150cc9)
raw | patch | inline | side by side (parent: 2150cc9)
author | Johannes Schindelin <Johannes.Schindelin@gmx.de> | |
Tue, 16 Aug 2005 00:20:34 +0000 (02:20 +0200) | ||
committer | Junio C Hamano <junkio@cox.net> | |
Tue, 16 Aug 2005 00:44:16 +0000 (17:44 -0700) |
Since git-commit-script has a "--signoff" option, use that in
git-format-patch-script, too (and since partial option names are
supported,"--sign" is still valid).
Also, if the message already contains the S-O-B line, silently ignore the
"--signoff" request.
Signed-off-by: Johannes Schindelin <Johannes.Schindelin@gmx.de>
Signed-off-by: Junio C Hamano <junkio@cox.net>
git-format-patch-script, too (and since partial option names are
supported,"--sign" is still valid).
Also, if the message already contains the S-O-B line, silently ignore the
"--signoff" request.
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 ebe6616494fb81ec3d480cecd93fee0d83f3555f..78bb089542082416ccc506a4ec141177cf753cbf 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] [--sign] [-<diff options>...] upstream [ our-head ]
+ echo >&2 "usage: $0"' [-n] [-o dir] [--mbox] [--check] [--signoff] [-<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)
+ -s|--s|--si|--sig|--sign|--signo|--signof|--signoff)
signoff=t ;;
-o=*|--o=*|--ou=*|--out=*|--outp=*|--outpu=*|--output=*|--output-=*|\
--output-d=*|--output-di=*|--output-dir=*|--output-dire=*|\
test "$signoff" = "t" && {
offsigner=`git-var GIT_COMMITTER_IDENT | sed -e 's/>.*/>/'`
- echo
- echo "Signed-off-by: $offsigner"
- echo
+ line="Signed-off-by: $offsigner"
+ grep -q "^$line\$" $commsg || {
+ echo
+ echo "$line"
+ echo
+ }
}
echo '---'