3 # Copyright (c) 2005 Junio C Hamano
6 USAGE
='[-n | -k] [-o <dir> | --stdout] [--signoff] [--check] [--diff-options] [--attach] <his> [<mine>]'
7 LONG_USAGE
='Prepare each commit with its patch since <mine> head forked from
8 <his> head, one file per patch formatted to resemble UNIX mailbox
9 format, for e-mail submission or use with git-am.
11 Each output file is numbered sequentially from 1, and uses the
12 first line of the commit message (massaged for pathname safety)
15 When -o is specified, output files are created in <dir>; otherwise
16 they are created in the current working directory. This option
17 is ignored if --stdout is specified.
19 When -n is specified, instead of "[PATCH] Subject", the first
20 line is formatted as "[PATCH N/M] Subject", unless you have only
23 When --attach is specified, patches are attached, not inlined.'
27 # Force diff to run in C locale.
36 while case "$#" in 0) break;; esac
39 -c|
--c|
--ch|
--che|
--chec|
--check)
41 -a|
--a|
--au|
--aut|
--auth|
--autho|
--author|\
42 -d|
--d|
--da|
--dat|
--date|\
43 -m|
--m|
--mb|
--mbo|
--mbox) # now noop
45 --at|
--att|
--atta|
--attac|
--attach)
47 -k|
--k|
--ke|
--kee|
--keep|
--keep-|
--keep-s|
--keep-su|
--keep-sub|\
48 --keep-subj|
--keep-subje|
--keep-subjec|
--keep-subject)
50 -n|
--n|
--nu|
--num|
--numb|
--numbe|
--number|
--numbere|
--numbered)
52 -s|
--s|
--si|
--sig|
--sign|
--signo|
--signof|
--signoff)
54 --st|
--std|
--stdo|
--stdou|
--stdout)
56 -o=*|
--o=*|
--ou=*|
--out=*|
--outp=*|
--outpu=*|
--output=*|
--output-=*|\
57 --output-d=*|
--output-di=*|
--output-dir=*|
--output-dire=*|\
58 --output-direc=*|
--output-direct=*|
--output-directo=*|\
59 --output-director=*|
--output-directory=*)
60 outdir
=`expr "$1" : '-[^=]*=\(.*\)'` ;;
61 -o|
--o|
--ou|
--out|
--outp|
--outpu|
--output|
--output-|
--output-d|\
62 --output-di|
--output-dir|
--output-dire|
--output-direc|
--output-direct|\
63 --output-directo|
--output-director|
--output-directory)
64 case "$#" in 1) usage
;; esac; shift
66 -h|
--h|
--he|
--hel|
--help)
69 -*' '* |
-*"$LF"* |
-*' '*)
70 # Ignore diff option that has whitespace for now.
72 -*) diff_opts
="$diff_opts$1 " ;;
78 case "$keep_subject$numbered" in
80 die
'--keep-subject and --numbered are incompatible.' ;;
84 trap 'rm -f $tmp-*' 0 1 2 3 15
90 # Backward compatible argument parsing hack.
92 # Historically, we supported:
93 # 1. "rev1" is equivalent to "rev1..HEAD"
95 # 3. "rev1" "rev2 is equivalent to "rev1..rev2"
97 # We want to take a sequence of "rev1..rev2" in general.
98 # Also, "rev1.." should mean "rev1..HEAD"; git-diff users are
99 # familiar with that syntax.
103 # single "rev1..rev2"
106 # single "rev1.." should mean "rev1..HEAD"
116 # not traditional "rev1" "rev2"
124 # Now we have what we want in $@
129 rev1
=`expr "$revpair" : '\(.*\)\.\.'`
130 rev2
=`expr "$revpair" : '.*\.\.\(.*\)'`
137 git-rev-parse
--verify "$rev1^0" >/dev
/null
2>&1 ||
138 die
"Not a valid rev $rev1 ($revpair)"
139 git-rev-parse
--verify "$rev2^0" >/dev
/null
2>&1 ||
140 die
"Not a valid rev $rev2 ($revpair)"
141 git-cherry
-v "$rev1" "$rev2" |
142 while read sign
rev comment
146 echo >&2 "Merged already: $comment"
155 me
=`git-var GIT_AUTHOR_IDENT | sed -e 's/>.*/>/'`
156 headers
=`git-repo-config --get format.headers`
160 mimemagic
="050802040500080604070107"
165 *) outdir
="$outdir/" ;;
167 test -d "$outdir" || mkdir
-p "$outdir" ||
exit
172 s/^\[PATCH[^]]*\] *//
173 s/[^-a-z.A-Z_0-9]/-/g
186 my ($keep_subject, $num, $signoff, $headers, $mimemagic, $commsg) = @ARGV;
187 my ($signoff_pattern, $done_header, $done_subject, $done_separator, $signoff_seen,
191 $signoff = "Signed-off-by: " . `git-var GIT_COMMITTER_IDENT`;
192 $signoff =~ s/>.*/>/;
193 $signoff_pattern = quotemeta($signoff);
196 my @weekday_names = qw(Sun Mon Tue Wed Thu Fri Sat);
197 my @month_names = qw(Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec);
200 my ($time, $tz) = @_;
201 my $minutes = abs($tz);
202 $minutes = int($minutes / 100) * 60 + ($minutes % 100);
204 $minutes = -$minutes;
206 my $t = $time + $minutes * 60;
207 my ($sec,$min,$hour,$mday,$mon,$year,$wday,$yday) = gmtime($t);
208 return sprintf("%s %s %d %02d:%02d:%02d %d %+05d",
209 $weekday_names[$wday],
211 $mday, $hour, $min, $sec,
215 print "From nobody Mon Sep 17 00:00:00 2001\n";
216 open FH, "git stripspace <$commsg |" or die "open $commsg pipe";
218 unless ($done_header) {
222 elsif (/^author (.*>) (.*)$/) {
223 my ($author_ident, $author_date) = ($1, $2);
224 my ($utc, $off) = ($author_date =~ /^(\d+) ([-+]?\d+)$/);
225 $author_date = show_date($utc, $off);
227 print "From: $author_ident\n";
228 print "Date: $author_date\n";
232 unless ($done_subject) {
233 unless ($keep_subject) {
234 s/^\[PATCH[^]]*\]\s*//;
242 print "MIME-Version: 1.0\n";
243 print "Content-Type: multipart/mixed;\n";
244 print " boundary=\"------------$mimemagic\"\n";
246 print "This is a multi-part message in MIME format.\n";
247 print "--------------$mimemagic\n";
248 print "Content-Type: text/plain; charset=UTF-8; format=fixed\n";
249 print "Content-Transfer-Encoding: 8bit\n";
254 unless ($done_separator) {
260 $last_was_signoff = 0;
261 if (/Signed-off-by:/i) {
262 if ($signoff ne "" && /Signed-off-by:\s*$signoff_pattern$/i) {
268 if (!$signoff_seen && $signoff ne "") {
269 if (!$last_was_signoff) {
275 close FH or die "close $commsg pipe";
276 ' "$keep_subject" "$num" "$signoff" "$headers" "$mimemagic" $commsg
278 git-diff-tree
-p $diff_opts "$commit" | git-apply
--stat --summary
283 echo "--------------$mimemagic"
284 echo "Content-Type: text/x-patch;"
285 echo " name=\"$commit.diff\""
286 echo "Content-Transfer-Encoding: 8bit"
287 echo "Content-Disposition: inline;"
288 echo " filename=\"$commit.diff\""
291 git-diff-tree
-p $diff_opts "$commit"
295 echo "@@GIT_VERSION@@"
299 echo "--------------$mimemagic--"
306 total
=`wc -l <$series | tr -dc "[0-9]"`
307 case "$total,$numbered" in
311 numfmt
=`echo "$total" | wc -c`
312 numfmt
=$
(($numfmt-1))
313 numfmt
=" %0${numfmt}d/$total"
319 git-cat-file commit
"$commit" | git-stripspace
>$commsg
320 title
=`sed -ne "$titleScript" <$commsg`
324 num
=`printf "$numfmt" $i` ;;
327 file=`printf '%04d-%stxt' $i "$title"`
328 if test '' = "$stdout"
331 process_one
>"$outdir$file"
334 # This is slightly modified from Andrew Morton's Perfect Patch.
335 # Lines you introduce should not have trailing whitespace.
336 # Also check for an indentation that has SP before a TAB.
337 grep -n '^+\([ ]* .*\|.*[ ]\)$' "$outdir$file"