2005-04-12 10:40:20 +02:00
|
|
|
#!/bin/sh
|
|
|
|
##
|
|
|
|
## applypatch takes four file arguments, and uses those to
|
|
|
|
## apply the unpacked patch (surprise surprise) that they
|
|
|
|
## represent to the current tree.
|
|
|
|
##
|
|
|
|
## The arguments are:
|
|
|
|
## $1 - file with commit message
|
|
|
|
## $2 - file with the actual patch
|
2005-06-23 18:40:23 +02:00
|
|
|
## $3 - "info" file with Author, email and subject
|
|
|
|
## $4 - optional file containing signoff to add
|
2005-04-12 10:40:20 +02:00
|
|
|
##
|
2005-09-08 02:26:23 +02:00
|
|
|
. git-sh-setup || die "Not a git archive."
|
2005-08-19 22:53:13 +02:00
|
|
|
|
2005-04-20 17:23:00 +02:00
|
|
|
final=.dotest/final-commit
|
|
|
|
##
|
|
|
|
## If this file exists, we ask before applying
|
|
|
|
##
|
|
|
|
query_apply=.dotest/.query_apply
|
2005-08-19 22:53:13 +02:00
|
|
|
|
|
|
|
## We do not munge the first line of the commit message too much
|
|
|
|
## if this file exists.
|
2005-08-17 07:18:27 +02:00
|
|
|
keep_subject=.dotest/.keep_subject
|
2005-08-19 22:53:13 +02:00
|
|
|
|
|
|
|
|
2005-04-12 10:40:20 +02:00
|
|
|
MSGFILE=$1
|
|
|
|
PATCHFILE=$2
|
2005-06-23 18:40:23 +02:00
|
|
|
INFO=$3
|
2005-08-19 22:53:13 +02:00
|
|
|
SIGNOFF=$4
|
|
|
|
EDIT=${VISUAL:-${EDITOR:-vi}}
|
2005-04-20 17:23:00 +02:00
|
|
|
|
2005-05-17 18:35:01 +02:00
|
|
|
export GIT_AUTHOR_NAME="$(sed -n '/^Author/ s/Author: //p' .dotest/info)"
|
|
|
|
export GIT_AUTHOR_EMAIL="$(sed -n '/^Email/ s/Email: //p' .dotest/info)"
|
|
|
|
export GIT_AUTHOR_DATE="$(sed -n '/^Date/ s/Date: //p' .dotest/info)"
|
2005-04-12 10:40:20 +02:00
|
|
|
export SUBJECT="$(sed -n '/^Subject/ s/Subject: //p' .dotest/info)"
|
|
|
|
|
2005-08-19 22:53:13 +02:00
|
|
|
if test '' != "$SIGNOFF"
|
|
|
|
then
|
|
|
|
if test -f "$SIGNOFF"
|
|
|
|
then
|
|
|
|
SIGNOFF=`cat "$SIGNOFF"` || exit
|
|
|
|
elif case "$SIGNOFF" in yes | true | me | please) : ;; *) false ;; esac
|
|
|
|
then
|
|
|
|
SIGNOFF=`git-var GIT_COMMITTER_IDENT | sed -e '
|
|
|
|
s/>.*/>/
|
|
|
|
s/^/Signed-off-by: /'
|
|
|
|
`
|
|
|
|
else
|
|
|
|
SIGNOFF=
|
|
|
|
fi
|
|
|
|
if test '' != "$SIGNOFF"
|
|
|
|
then
|
|
|
|
LAST_SIGNED_OFF_BY=`
|
|
|
|
sed -ne '/^Signed-off-by: /p' "$MSGFILE" |
|
|
|
|
tail -n 1
|
|
|
|
`
|
|
|
|
test "$LAST_SIGNED_OFF_BY" = "$SIGNOFF" ||
|
|
|
|
echo "$SIGNOFF" >>"$MSGFILE"
|
|
|
|
fi
|
2005-04-20 17:23:00 +02:00
|
|
|
fi
|
2005-08-19 22:53:13 +02:00
|
|
|
|
2005-08-17 07:18:27 +02:00
|
|
|
patch_header=
|
|
|
|
test -f "$keep_subject" || patch_header='[PATCH] '
|
2005-04-20 17:23:00 +02:00
|
|
|
|
2005-08-19 22:53:13 +02:00
|
|
|
{
|
|
|
|
echo "$patch_header$SUBJECT"
|
|
|
|
if test -s "$MSGFILE"
|
|
|
|
then
|
|
|
|
echo
|
|
|
|
cat "$MSGFILE"
|
|
|
|
fi
|
|
|
|
} >"$final"
|
2005-04-20 17:23:00 +02:00
|
|
|
|
2005-08-19 22:53:13 +02:00
|
|
|
interactive=yes
|
|
|
|
test -f "$query_apply" || interactive=no
|
2005-04-20 17:23:00 +02:00
|
|
|
|
2005-08-19 22:53:13 +02:00
|
|
|
while [ "$interactive" = yes ]; do
|
2005-04-20 17:23:00 +02:00
|
|
|
echo "Commit Body is:"
|
|
|
|
echo "--------------------------"
|
2005-08-19 22:53:13 +02:00
|
|
|
cat "$final"
|
2005-04-20 17:23:00 +02:00
|
|
|
echo "--------------------------"
|
|
|
|
echo -n "Apply? [y]es/[n]o/[e]dit/[a]ccept all "
|
|
|
|
read reply
|
2005-08-19 22:53:13 +02:00
|
|
|
case "$reply" in
|
|
|
|
y|Y) interactive=no;;
|
2005-04-20 17:23:00 +02:00
|
|
|
n|N) exit 2;; # special value to tell dotest to keep going
|
2005-08-19 22:53:13 +02:00
|
|
|
e|E) "$EDIT" "$final";;
|
|
|
|
a|A) rm -f "$query_apply"
|
|
|
|
interactive=no ;;
|
2005-04-20 17:23:00 +02:00
|
|
|
esac
|
|
|
|
done
|
|
|
|
|
2005-08-19 22:53:13 +02:00
|
|
|
if test -x "$GIT_DIR"/hooks/applypatch-msg
|
|
|
|
then
|
|
|
|
"$GIT_DIR"/hooks/applypatch-msg "$final" || exit
|
|
|
|
fi
|
|
|
|
|
2005-04-12 10:40:20 +02:00
|
|
|
echo
|
2005-04-19 02:40:32 +02:00
|
|
|
echo Applying "'$SUBJECT'"
|
2005-04-12 10:40:20 +02:00
|
|
|
echo
|
|
|
|
|
2005-08-19 22:53:13 +02:00
|
|
|
git-apply --index "$PATCHFILE" || exit 1
|
|
|
|
|
|
|
|
if test -x "$GIT_DIR"/hooks/pre-applypatch
|
|
|
|
then
|
|
|
|
"$GIT_DIR"/hooks/pre-applypatch || exit
|
|
|
|
fi
|
|
|
|
|
2005-04-29 23:56:18 +02:00
|
|
|
tree=$(git-write-tree) || exit 1
|
2005-04-12 10:40:20 +02:00
|
|
|
echo Wrote tree $tree
|
2005-08-19 22:53:13 +02:00
|
|
|
commit=$(git-commit-tree $tree -p $(cat "$GIT_DIR"/HEAD) < "$final") || exit 1
|
2005-04-12 10:40:20 +02:00
|
|
|
echo Committed: $commit
|
2005-08-19 22:53:13 +02:00
|
|
|
echo $commit > "$GIT_DIR"/HEAD
|
|
|
|
|
|
|
|
if test -x "$GIT_DIR"/hooks/post-applypatch
|
|
|
|
then
|
|
|
|
"$GIT_DIR"/hooks/post-applypatch
|
|
|
|
fi
|