You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
69 lines
1.5 KiB
69 lines
1.5 KiB
20 years ago
|
#!/bin/sh
|
||
|
#
|
||
|
# Copyright (c) 2005 Junio C Hamano.
|
||
|
#
|
||
|
|
||
19 years ago
|
. git-sh-setup || die "Not a git archive."
|
||
20 years ago
|
|
||
20 years ago
|
usage="usage: $0 "'<upstream> [<head>]
|
||
|
|
||
|
Uses output from git-cherry to rebase local commits to the new head of
|
||
|
upstream tree.'
|
||
|
|
||
20 years ago
|
case "$#,$1" in
|
||
|
1,*..*)
|
||
|
upstream=$(expr "$1" : '\(.*\)\.\.') ours=$(expr "$1" : '.*\.\.\(.*\)$')
|
||
|
set x "$upstream" "$ours"
|
||
|
shift ;;
|
||
|
esac
|
||
20 years ago
|
|
||
19 years ago
|
git-update-index --refresh || exit
|
||
20 years ago
|
|
||
20 years ago
|
case "$#" in
|
||
20 years ago
|
1) ours_symbolic=HEAD ;;
|
||
|
2) ours_symbolic="$2" ;;
|
||
|
*) die "$usage" ;;
|
||
20 years ago
|
esac
|
||
|
|
||
20 years ago
|
upstream=`git-rev-parse --verify "$1"` &&
|
||
20 years ago
|
ours=`git-rev-parse --verify "$ours_symbolic"` || exit
|
||
19 years ago
|
different1=$(git-diff-index --name-only --cached "$ours") &&
|
||
|
different2=$(git-diff-index --name-only "$ours") &&
|
||
20 years ago
|
test "$different1$different2" = "" ||
|
||
20 years ago
|
die "Your working tree does not match $ours_symbolic."
|
||
|
|
||
20 years ago
|
git-read-tree -m -u $ours $upstream &&
|
||
20 years ago
|
git-rev-parse --verify "$upstream^0" >"$GIT_DIR/HEAD" || exit
|
||
20 years ago
|
|
||
|
tmp=.rebase-tmp$$
|
||
|
fail=$tmp-fail
|
||
19 years ago
|
trap "rm -rf $tmp-*" 1 2 3 15
|
||
20 years ago
|
|
||
|
>$fail
|
||
|
|
||
19 years ago
|
git-cherry -v $upstream $ours |
|
||
|
while read sign commit msg
|
||
20 years ago
|
do
|
||
|
case "$sign" in
|
||
19 years ago
|
-)
|
||
|
echo >&2 "* Already applied: $msg"
|
||
|
continue ;;
|
||
20 years ago
|
esac
|
||
19 years ago
|
echo >&2 "* Applying: $msg"
|
||
20 years ago
|
S=`cat "$GIT_DIR/HEAD"` &&
|
||
19 years ago
|
git-cherry-pick --replay $commit || {
|
||
19 years ago
|
echo >&2 "* Not applying the patch and continuing."
|
||
20 years ago
|
echo $commit >>$fail
|
||
19 years ago
|
git-reset --hard $S
|
||
20 years ago
|
}
|
||
|
done
|
||
|
if test -s $fail
|
||
|
then
|
||
19 years ago
|
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
|
||
20 years ago
|
fi
|