2005-06-25 11:23:43 +02:00
|
|
|
#!/bin/sh
|
|
|
|
#
|
|
|
|
# Copyright (c) 2005 Junio C Hamano.
|
|
|
|
#
|
|
|
|
|
2005-09-08 02:26:23 +02:00
|
|
|
. git-sh-setup || die "Not a git archive."
|
2005-08-08 00:51:09 +02:00
|
|
|
|
2005-06-25 11:23:43 +02:00
|
|
|
usage="usage: $0 "'<upstream> [<head>]
|
|
|
|
|
|
|
|
Uses output from git-cherry to rebase local commits to the new head of
|
|
|
|
upstream tree.'
|
|
|
|
|
2005-08-08 00:51:09 +02:00
|
|
|
case "$#,$1" in
|
|
|
|
1,*..*)
|
|
|
|
upstream=$(expr "$1" : '\(.*\)\.\.') ours=$(expr "$1" : '.*\.\.\(.*\)$')
|
|
|
|
set x "$upstream" "$ours"
|
|
|
|
shift ;;
|
|
|
|
esac
|
2005-06-25 11:23:43 +02:00
|
|
|
|
2005-09-08 02:26:23 +02:00
|
|
|
git-update-index --refresh || exit
|
2005-08-18 00:19:57 +02:00
|
|
|
|
2005-06-25 11:23:43 +02:00
|
|
|
case "$#" in
|
2005-08-18 00:19:57 +02:00
|
|
|
1) ours_symbolic=HEAD ;;
|
|
|
|
2) ours_symbolic="$2" ;;
|
|
|
|
*) die "$usage" ;;
|
2005-06-25 11:23:43 +02:00
|
|
|
esac
|
|
|
|
|
2005-08-18 00:19:57 +02:00
|
|
|
upstream=`git-rev-parse --verify "$1"` &&
|
2005-08-18 22:00:53 +02:00
|
|
|
ours=`git-rev-parse --verify "$ours_symbolic"` || exit
|
2005-09-08 02:26:23 +02:00
|
|
|
different1=$(git-diff-index --name-only --cached "$ours") &&
|
|
|
|
different2=$(git-diff-index --name-only "$ours") &&
|
2005-08-19 01:30:36 +02:00
|
|
|
test "$different1$different2" = "" ||
|
2005-08-18 00:19:57 +02:00
|
|
|
die "Your working tree does not match $ours_symbolic."
|
|
|
|
|
2005-08-08 00:51:09 +02:00
|
|
|
git-read-tree -m -u $ours $upstream &&
|
2005-08-16 00:37:37 +02:00
|
|
|
git-rev-parse --verify "$upstream^0" >"$GIT_DIR/HEAD" || exit
|
2005-06-25 11:23:43 +02:00
|
|
|
|
|
|
|
tmp=.rebase-tmp$$
|
|
|
|
fail=$tmp-fail
|
2005-08-28 08:53:27 +02:00
|
|
|
trap "rm -rf $tmp-*" 1 2 3 15
|
2005-06-25 11:23:43 +02:00
|
|
|
|
|
|
|
>$fail
|
|
|
|
|
2005-08-28 08:53:27 +02:00
|
|
|
git-cherry -v $upstream $ours |
|
|
|
|
while read sign commit msg
|
2005-06-25 11:23:43 +02:00
|
|
|
do
|
|
|
|
case "$sign" in
|
2005-08-28 08:53:27 +02:00
|
|
|
-)
|
|
|
|
echo >&2 "* Already applied: $msg"
|
|
|
|
continue ;;
|
2005-06-25 11:23:43 +02:00
|
|
|
esac
|
2005-08-28 08:53:27 +02:00
|
|
|
echo >&2 "* Applying: $msg"
|
2005-06-25 11:23:43 +02:00
|
|
|
S=`cat "$GIT_DIR/HEAD"` &&
|
2005-09-08 02:26:23 +02:00
|
|
|
git-cherry-pick --replay $commit || {
|
2005-08-28 08:53:27 +02:00
|
|
|
echo >&2 "* Not applying the patch and continuing."
|
2005-06-25 11:23:43 +02:00
|
|
|
echo $commit >>$fail
|
2005-09-08 02:26:23 +02:00
|
|
|
git-reset --hard $S
|
2005-06-25 11:23:43 +02:00
|
|
|
}
|
|
|
|
done
|
|
|
|
if test -s $fail
|
|
|
|
then
|
2005-08-28 08:53:27 +02:00
|
|
|
echo >&2 Some commits could not be rebased, check by hand:
|
|
|
|
cat >&2 $fail
|
|
|
|
echo >&2 "(the same list of commits are found in $tmp)"
|
|
|
|
exit 1
|
|
|
|
else
|
|
|
|
rm -f $fail
|
2005-06-25 11:23:43 +02:00
|
|
|
fi
|