]> git.ipfire.org Git - thirdparty/git.git/blame - git-applymbox.sh
New tests and en-passant modifications to mktag.
[thirdparty/git.git] / git-applymbox.sh
CommitLineData
853916ff
LT
1#!/bin/sh
2##
3## "dotest" is my stupid name for my patch-application script, which
4## I never got around to renaming after I tested it. We're now on the
5## second generation of scripts, still called "dotest".
6##
c5f7674a
LT
7## Update: Ryan Anderson finally shamed me into naming this "applymbox".
8##
853916ff
LT
9## You give it a mbox-format collection of emails, and it will try to
10## apply them to the kernel using "applypatch"
11##
37275318
JH
12## The patch application may fail in the middle. In which case:
13## (1) look at .dotest/patch and fix it up to apply
14## (2) re-run applymbox with -c .dotest/msg-number for the current one.
15## Pay a special attention to the commit log message if you do this and
16## use a Signoff_file, because applypatch wants to append the sign-off
17## message to msg-clean every time it is run.
42e2cba2
PB
18##
19## git-am is supposed to be the newer and better tool for this job.
ad4e9ce4 20
806f36d4 21USAGE='[-u] [-k] [-q] [-m] (-c .dotest/<num> | mbox) [signoff]'
ae2b0f15 22. git-sh-setup
d571c2be 23
e3b59a44
JH
24git var GIT_COMMITTER_IDENT >/dev/null || exit
25
d4a9ce78 26keep_subject= query_apply= continue= utf8= resume=t
37275318
JH
27while case "$#" in 0) break ;; esac
28do
29 case "$1" in
d4a9ce78 30 -u) utf8=-u ;;
6bff6a60 31 -k) keep_subject=-k ;;
37275318
JH
32 -q) query_apply=t ;;
33 -c) continue="$2"; resume=f; shift ;;
e1355547 34 -m) fall_back_3way=t ;;
37275318
JH
35 -*) usage ;;
36 *) break ;;
37 esac
38 shift
39done
40
41case "$continue" in
42'')
43 rm -rf .dotest
44 mkdir .dotest
e11fc020
JH
45 num_msgs=$(git-mailsplit "$1" .dotest) || exit 1
46 echo "$num_msgs patch(es) to process."
b50abe88 47 shift
ad4e9ce4 48esac
37275318 49
215a7ad1 50files=$(git-diff-index --cached --name-only HEAD) || exit
d571c2be
LT
51if [ "$files" ]; then
52 echo "Dirty index: cannot apply patches (dirty: $files)" >&2
53 exit 1
54fi
55
37275318
JH
56case "$query_apply" in
57t) touch .dotest/.query_apply
58esac
47f0b6d5
JH
59case "$fall_back_3way" in
60t) : >.dotest/.3way
61esac
6bff6a60
JH
62case "$keep_subject" in
63-k) : >.dotest/.keep_subject
64esac
37275318 65
b50abe88
JH
66signoff="$1"
67set x .dotest/0*
68shift
69while case "$#" in 0) break;; esac
853916ff 70do
b50abe88
JH
71 i="$1"
72 case "$resume,$continue" in
73 f,$i) resume=t;;
07a95d0e
JH
74 f,*) shift
75 continue;;
b50abe88 76 *)
d4a9ce78 77 git-mailinfo $keep_subject $utf8 \
6bff6a60 78 .dotest/msg .dotest/patch <$i >.dotest/info || exit 1
b50abe88
JH
79 git-stripspace < .dotest/msg > .dotest/msg-clean
80 ;;
81 esac
82 while :; # for fixing up and retry
83 do
84 git-applypatch .dotest/msg-clean .dotest/patch .dotest/info "$signoff"
85 case "$?" in
4ebe63df
JH
86 0)
87 # Remove the cleanly applied one to reduce clutter.
88 rm -f .dotest/$i
89 ;;
90 2)
ad4e9ce4
JB
91 # 2 is a special exit code from applypatch to indicate that
92 # the patch wasn't applied, but continue anyway
b50abe88
JH
93 ;;
94 *)
95 ret=$?
96 if test -f .dotest/.query_apply
97 then
98 echo >&2 "* Patch failed."
99 echo >&2 "* You could fix it up in your editor and"
100 echo >&2 " retry. If you want to do so, say yes here"
101 echo >&2 " AFTER fixing .dotest/patch up."
102 echo >&2 -n "Retry [y/N]? "
103 read yesno
104 case "$yesno" in
105 [Yy]*)
106 continue ;;
107 esac
108 fi
109 exit $ret
110 esac
111 break
112 done
113 shift
853916ff 114done
ad4e9ce4
JB
115# return to pristine
116rm -fr .dotest