Document the --(no-)edit switch of git-revert and git-cherry-pick
[git/dscho.git] / git-format-patch.sh
blob1eebe857c021495b92d9e39ec1193b85ab4e980e
1 #!/bin/sh
3 # Copyright (c) 2005 Junio C Hamano
6 . git-sh-setup
8 # Force diff to run in C locale.
9 LANG=C LC_ALL=C
10 export LANG LC_ALL
12 usage () {
13 echo >&2 "usage: $0"' [-n] [-o dir | --stdout] [--keep-subject] [--mbox]
14 [--check] [--signoff] [-<diff options>...]
15 [--help]
16 ( from..to ... | upstream [ our-head ] )
18 Prepare each commit with its patch since our-head forked from upstream,
19 one file per patch, for e-mail submission. Each output file is
20 numbered sequentially from 1, and uses the first line of the commit
21 message (massaged for pathname safety) as the filename.
23 When -o is specified, output files are created in that directory; otherwise in
24 the current working directory.
26 When -n is specified, instead of "[PATCH] Subject", the first line is formatted
27 as "[PATCH N/M] Subject", unless you have only one patch.
29 When --mbox is specified, the output is formatted to resemble
30 UNIX mailbox format, and can be concatenated together for processing
31 with applymbox.
33 exit 1
36 diff_opts=
37 LF='
40 outdir=./
41 while case "$#" in 0) break;; esac
43 case "$1" in
44 -a|--a|--au|--aut|--auth|--autho|--author)
45 author=t ;;
46 -c|--c|--ch|--che|--chec|--check)
47 check=t ;;
48 -d|--d|--da|--dat|--date)
49 date=t ;;
50 -m|--m|--mb|--mbo|--mbox)
51 date=t author=t mbox=t ;;
52 -k|--k|--ke|--kee|--keep|--keep-|--keep-s|--keep-su|--keep-sub|\
53 --keep-subj|--keep-subje|--keep-subjec|--keep-subject)
54 keep_subject=t ;;
55 -n|--n|--nu|--num|--numb|--numbe|--number|--numbere|--numbered)
56 numbered=t ;;
57 -s|--s|--si|--sig|--sign|--signo|--signof|--signoff)
58 signoff=t ;;
59 --st|--std|--stdo|--stdou|--stdout)
60 stdout=t mbox=t date=t author=t ;;
61 -o=*|--o=*|--ou=*|--out=*|--outp=*|--outpu=*|--output=*|--output-=*|\
62 --output-d=*|--output-di=*|--output-dir=*|--output-dire=*|\
63 --output-direc=*|--output-direct=*|--output-directo=*|\
64 --output-director=*|--output-directory=*)
65 outdir=`expr "$1" : '-[^=]*=\(.*\)'` ;;
66 -o|--o|--ou|--out|--outp|--outpu|--output|--output-|--output-d|\
67 --output-di|--output-dir|--output-dire|--output-direc|--output-direct|\
68 --output-directo|--output-director|--output-directory)
69 case "$#" in 1) usage ;; esac; shift
70 outdir="$1" ;;
71 -h|--h|--he|--hel|--help)
72 usage
74 -*' '* | -*"$LF"* | -*' '*)
75 # Ignore diff option that has whitespace for now.
77 -*) diff_opts="$diff_opts$1 " ;;
78 *) break ;;
79 esac
80 shift
81 done
83 case "$keep_subject$numbered" in
84 tt)
85 die '--keep-subject and --numbered are incompatible.' ;;
86 esac
88 tmp=.tmp-series$$
89 trap 'rm -f $tmp-*' 0 1 2 3 15
91 series=$tmp-series
92 commsg=$tmp-commsg
93 filelist=$tmp-files
95 # Backward compatible argument parsing hack.
97 # Historically, we supported:
98 # 1. "rev1" is equivalent to "rev1..HEAD"
99 # 2. "rev1..rev2"
100 # 3. "rev1" "rev2 is equivalent to "rev1..rev2"
102 # We want to take a sequence of "rev1..rev2" in general.
103 # Also, "rev1.." should mean "rev1..HEAD"; git-diff users are
104 # familiar with that syntax.
106 case "$#,$1$2" in
107 1,?*..?*)
108 # single "rev1..rev2"
110 1,?*..)
111 # single "rev1.." should mean "rev1..HEAD"
112 set x "$1"HEAD
113 shift
115 1,*)
116 # single rev1
117 set x "$1..HEAD"
118 shift
120 2,?*..?*)
121 # not traditional "rev1" "rev2"
123 2,*)
124 set x "$1..$2"
125 shift
127 esac
129 # Now we have what we want in $@
130 for revpair
132 case "$revpair" in
133 ?*..?*)
134 rev1=`expr "$revpair" : '\(.*\)\.\.'`
135 rev2=`expr "$revpair" : '.*\.\.\(.*\)'`
138 rev1="$revpair^"
139 rev2="$revpair"
141 esac
142 git-rev-parse --verify "$rev1^0" >/dev/null 2>&1 ||
143 die "Not a valid rev $rev1 ($revpair)"
144 git-rev-parse --verify "$rev2^0" >/dev/null 2>&1 ||
145 die "Not a valid rev $rev2 ($revpair)"
146 git-cherry -v "$rev1" "$rev2" |
147 while read sign rev comment
149 case "$sign" in
150 '-')
151 echo >&2 "Merged already: $comment"
154 echo $rev
156 esac
157 done
158 done >$series
160 me=`git-var GIT_AUTHOR_IDENT | sed -e 's/>.*/>/'`
162 case "$outdir" in
163 */) ;;
164 *) outdir="$outdir/" ;;
165 esac
166 test -d "$outdir" || mkdir -p "$outdir" || exit
168 titleScript='
169 /./d
170 /^$/n
171 s/^\[PATCH[^]]*\] *//
172 s/[^-a-z.A-Z_0-9]/-/g
173 s/\.\.\.*/\./g
174 s/\.*$//
175 s/--*/-/g
176 s/^-//
177 s/-$//
178 s/$/./
183 whosepatchScript='
184 /^author /{
185 s/author \(.*>\) \(.*\)$/au='\''\1'\'' ad='\''\2'\''/p
189 process_one () {
190 mailScript='
191 /./d
192 /^$/n'
193 case "$keep_subject" in
194 t) ;;
196 mailScript="$mailScript"'
197 s|^\[PATCH[^]]*\] *||
198 s|^|[PATCH'"$num"'] |'
200 esac
201 mailScript="$mailScript"'
202 s|^|Subject: |'
203 case "$mbox" in
205 echo 'From nobody Mon Sep 17 00:00:00 2001' ;# UNIX "From" line
207 esac
209 eval "$(sed -ne "$whosepatchScript" $commsg)"
210 test "$author,$au" = ",$me" || {
211 mailScript="$mailScript"'
213 From: '"$au"
215 test "$date,$au" = ",$me" || {
216 mailScript="$mailScript"'
218 Date: '"$ad"
221 mailScript="$mailScript"'
222 : body
225 b body'
227 (cat $commsg ; echo; echo) |
228 sed -ne "$mailScript" |
229 git-stripspace
231 test "$signoff" = "t" && {
232 offsigner=`git-var GIT_COMMITTER_IDENT | sed -e 's/>.*/>/'`
233 line="Signed-off-by: $offsigner"
234 grep -q "^$line\$" $commsg || {
235 echo
236 echo "$line"
237 echo
240 echo
241 echo '---'
242 echo
243 git-diff-tree -p $diff_opts "$commit" | git-apply --stat --summary
244 echo
245 git-diff-tree -p $diff_opts "$commit"
246 echo "-- "
247 echo "@@GIT_VERSION@@"
249 case "$mbox" in
251 echo
253 esac
256 total=`wc -l <$series | tr -dc "[0-9]"`
258 while read commit
260 git-cat-file commit "$commit" | git-stripspace >$commsg
261 title=`sed -ne "$titleScript" <$commsg`
262 case "$numbered" in
263 '') num= ;;
265 case $total in
266 1) num= ;;
267 *) num=' '`printf "%d/%d" $i $total` ;;
268 esac
269 esac
271 file=`printf '%04d-%stxt' $i "$title"`
272 if test '' = "$stdout"
273 then
274 echo "$file"
275 process_one >"$outdir$file"
276 if test t = "$check"
277 then
278 # This is slightly modified from Andrew Morton's Perfect Patch.
279 # Lines you introduce should not have trailing whitespace.
280 # Also check for an indentation that has SP before a TAB.
281 grep -n '^+\([ ]* .*\|.*[ ]\)$' "$outdir$file"
284 else
285 echo >&2 "$file"
286 process_one
288 i=`expr "$i" + 1`
289 done <$series