]> git.ipfire.org Git - thirdparty/git.git/blob - tools/git-applypatch
Merge from gitk
[thirdparty/git.git] / tools / git-applypatch
1 #!/bin/sh
2 ##
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.
6 ##
7 ## The arguments are:
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
12 ##
13 signoff="$4"
14 final=.dotest/final-commit
15 ##
16 ## If this file exists, we ask before applying
17 ##
18 query_apply=.dotest/.query_apply
19 keep_subject=.dotest/.keep_subject
20 MSGFILE=$1
21 PATCHFILE=$2
22 INFO=$3
23 EDIT=${VISUAL:-$EDITOR}
24 EDIT=${EDIT:-vi}
25
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)"
30
31 if [ -n "$signoff" -a -f "$signoff" ]; then
32 cat $signoff >> $MSGFILE
33 fi
34 patch_header=
35 test -f "$keep_subject" || patch_header='[PATCH] '
36
37 (echo "$patch_header$SUBJECT" ; if [ -s $MSGFILE ]; then echo ; cat $MSGFILE; fi ) > $final
38
39 f=0
40 [ -f $query_apply ] || f=1
41
42 while [ $f -eq 0 ]; do
43 echo "Commit Body is:"
44 echo "--------------------------"
45 cat $final
46 echo "--------------------------"
47 echo -n "Apply? [y]es/[n]o/[e]dit/[a]ccept all "
48 read reply
49 case $reply in
50 y|Y) f=1;;
51 n|N) exit 2;; # special value to tell dotest to keep going
52 e|E) $EDIT $final;;
53 a|A) rm -f $query_apply
54 f=1;;
55 esac
56 done
57
58 echo
59 echo Applying "'$SUBJECT'"
60 echo
61
62 git-apply --index $PATCHFILE || exit 1
63 tree=$(git-write-tree) || exit 1
64 echo Wrote tree $tree
65 commit=$(git-commit-tree $tree -p $(cat .git/HEAD) < $final) || exit 1
66 echo Committed: $commit
67 echo $commit > .git/HEAD