3 # Copyright (c) 2005 Junio C Hamano
6 USAGE='[-n | -k] [-o <dir> | --stdout] [--signoff] [--check] [--mbox] [--diff-options] <upstream> [<our-head>]'
7 LONG_USAGE='Prepare each commit with its patch since our-head forked from upstream,
8 one file per patch, for e-mail submission. Each output file is
9 numbered sequentially from 1, and uses the first line of the commit
10 message (massaged for pathname safety) as the filename.
12 When -o is specified, output files are created in that directory; otherwise in
13 the current working directory.
15 When -n is specified, instead of "[PATCH] Subject", the first line is formatted
16 as "[PATCH N/M] Subject", unless you have only one patch.
18 When --mbox is specified, the output is formatted to resemble
19 UNIX mailbox format, and can be concatenated together for processing
23 # Force diff to run in C locale.
32 while case "$#" in 0) break;; esac
35 -a|--a|--au|--aut|--auth|--autho|--author)
37 -c|--c|--ch|--che|--chec|--check)
39 -d|--d|--da|--dat|--date)
41 -m|--m|--mb|--mbo|--mbox)
42 date=t author=t mbox=t ;;
43 -k|--k|--ke|--kee|--keep|--keep-|--keep-s|--keep-su|--keep-sub|\
44 --keep-subj|--keep-subje|--keep-subjec|--keep-subject)
46 -n|--n|--nu|--num|--numb|--numbe|--number|--numbere|--numbered)
48 -s|--s|--si|--sig|--sign|--signo|--signof|--signoff)
50 --st|--std|--stdo|--stdou|--stdout)
51 stdout=t mbox=t date=t author=t ;;
52 -o=*|--o=*|--ou=*|--out=*|--outp=*|--outpu=*|--output=*|--output-=*|\
53 --output-d=*|--output-di=*|--output-dir=*|--output-dire=*|\
54 --output-direc=*|--output-direct=*|--output-directo=*|\
55 --output-director=*|--output-directory=*)
56 outdir=`expr "$1" : '-[^=]*=\(.*\)'` ;;
57 -o|--o|--ou|--out|--outp|--outpu|--output|--output-|--output-d|\
58 --output-di|--output-dir|--output-dire|--output-direc|--output-direct|\
59 --output-directo|--output-director|--output-directory)
60 case "$#" in 1) usage ;; esac; shift
62 -h|--h|--he|--hel|--help)
65 -*' '* | -*"$LF"* | -*' '*)
66 # Ignore diff option that has whitespace for now.
68 -*) diff_opts="$diff_opts$1 " ;;
74 case "$keep_subject$numbered" in
76 die '--keep-subject and --numbered are incompatible.' ;;
80 trap 'rm -f $tmp-*' 0 1 2 3 15
86 # Backward compatible argument parsing hack.
88 # Historically, we supported:
89 # 1. "rev1" is equivalent to "rev1..HEAD"
91 # 3. "rev1" "rev2 is equivalent to "rev1..rev2"
93 # We want to take a sequence of "rev1..rev2" in general.
94 # Also, "rev1.." should mean "rev1..HEAD"; git-diff users are
95 # familiar with that syntax.
102 # single "rev1.." should mean "rev1..HEAD"
112 # not traditional "rev1" "rev2"
120 # Now we have what we want in $@
125 rev1=`expr "$revpair" : '\(.*\)\.\.'`
126 rev2=`expr "$revpair" : '.*\.\.\(.*\)'`
133 git-rev-parse --verify "$rev1^0" >/dev/null 2>&1 ||
134 die "Not a valid rev $rev1 ($revpair)"
135 git-rev-parse --verify "$rev2^0" >/dev/null 2>&1 ||
136 die "Not a valid rev $rev2 ($revpair)"
137 git-cherry -v "$rev1" "$rev2" |
138 while read sign rev comment
142 echo >&2 "Merged already: $comment"
151 me=`git-var GIT_AUTHOR_IDENT | sed -e 's/>.*/>/'`
155 *) outdir="$outdir/" ;;
157 test -d "$outdir" || mkdir -p "$outdir" || exit
162 s/^\[PATCH[^]]*\] *//
163 s/[^-a-z.A-Z_0-9]/-/g
176 s/author \(.*>\) \(.*\)$/au='\''\1'\'' ad='\''\2'\''/p
184 case "$keep_subject" in
187 mailScript="$mailScript"'
188 s|^\[PATCH[^]]*\] *||
189 s|^|[PATCH'"$num"'] |'
192 mailScript="$mailScript"'
196 echo 'From nobody Mon Sep 17 00:00:00 2001' ;# UNIX "From" line
200 eval "$(sed -ne "$whosepatchScript" $commsg)"
201 test "$author,$au" = ",$me" || {
202 mailScript="$mailScript"'
206 test "$date,$au" = ",$me" || {
207 mailScript="$mailScript"'
212 mailScript="$mailScript"'
220 (cat $commsg ; echo; echo) |
221 sed -ne "$mailScript" |
224 test "$signoff" = "t" && {
225 offsigner=`git-var GIT_COMMITTER_IDENT | sed -e 's/>.*/>/'`
226 line="Signed-off-by: $offsigner"
227 grep -q "^$line\$" $commsg || {
236 git-diff-tree -p $diff_opts "$commit" | git-apply --stat --summary
238 git-diff-tree -p $diff_opts "$commit"
240 echo "@@GIT_VERSION@@"
249 total=`wc -l <$series | tr -dc "[0-9]"`
250 case "$total,$numbered" in
254 numfmt=`echo "$total" | wc -c`
255 numfmt=$(($numfmt-1))
256 numfmt=" %0${numfmt}d/$total"
262 git-cat-file commit "$commit" | git-stripspace >$commsg
263 title=`sed -ne "$titleScript" <$commsg`
267 num=`printf "$numfmt" $i` ;;
270 file=`printf '%04d-%stxt' $i "$title"`
271 if test '' = "$stdout"
274 process_one >"$outdir$file"
277 # This is slightly modified from Andrew Morton's Perfect Patch.
278 # Lines you introduce should not have trailing whitespace.
279 # Also check for an indentation that has SP before a TAB.
280 grep -n '^+\([ ]* .*\|.*[ ]\)$' "$outdir$file"