3 ## applypatch takes four file arguments, and uses those to
4 ## apply the unpacked patch (surprise surprise) that they
5 ## represent to the current tree.
8 ## $1 - file with commit message
9 ## $2 - file with the actual patch
10 ## $3 - "info" file with Author, email and subject
11 ## $4 - optional file containing signoff to add
14 final
=.dotest
/final-commit
16 ## If this file exists, we ask before applying
18 query_apply
=.dotest
/.query_apply
19 keep_subject
=.dotest
/.keep_subject
23 EDIT
=${VISUAL:-$EDITOR}
26 export GIT_AUTHOR_NAME
="$(sed -n '/^Author/ s/Author: //p' .dotest/info)"
27 export GIT_AUTHOR_EMAIL
="$(sed -n '/^Email/ s/Email: //p' .dotest/info)"
28 export GIT_AUTHOR_DATE
="$(sed -n '/^Date/ s/Date: //p' .dotest/info)"
29 export SUBJECT
="$(sed -n '/^Subject/ s/Subject: //p' .dotest/info)"
31 if [ -n "$signoff" -a -f "$signoff" ]; then
32 cat $signoff >> $MSGFILE
35 test -f "$keep_subject" || patch_header
='[PATCH] '
37 (echo "$patch_header$SUBJECT" ; if [ -s $MSGFILE ]; then echo ; cat $MSGFILE; fi ) > $final
40 [ -f $query_apply ] || f
=1
42 while [ $f -eq 0 ]; do
43 echo "Commit Body is:"
44 echo "--------------------------"
46 echo "--------------------------"
47 echo -n "Apply? [y]es/[n]o/[e]dit/[a]ccept all "
51 n|N
) exit 2;; # special value to tell dotest to keep going
53 a|A
) rm -f $query_apply
59 echo Applying
"'$SUBJECT'"
62 git-apply
--index $PATCHFILE ||
exit 1
63 tree
=$
(git-write-tree
) ||
exit 1
65 commit
=$
(git-commit-tree
$tree -p $
(cat .git
/HEAD
) < $final) ||
exit 1
66 echo Committed
: $commit
67 echo $commit > .git
/HEAD