| # Copyright (c) 2005 Junio C Hamano. |
| . git-sh-setup-script || die "Not a git archive." |
| usage="usage: $0 "'<upstream> [<head>] |
| Uses output from git-cherry to rebase local commits to the new head of |
| upstream=$(expr "$1" : '\(.*\)\.\.') ours=$(expr "$1" : '.*\.\.\(.*\)$') |
| set x "$upstream" "$ours" |
| git-update-cache --refresh || exit |
| upstream=`git-rev-parse --verify "$1"` && |
| ours=`git-rev-parse --verify "$ours_symbolic"` || exit |
| different1=$(git-diff-cache --name-only --cached "$ours") && |
| different2=$(git-diff-cache --name-only "$ours") && |
| test "$different1$different2" = "" || |
| die "Your working tree does not match $ours_symbolic." |
| git-read-tree -m -u $ours $upstream && |
| git-rev-parse --verify "$upstream^0" >"$GIT_DIR/HEAD" || exit |
| trap "rm -rf $tmp-*" 0 1 2 3 15 |
| git-cherry $upstream $ours | |
| S=`cat "$GIT_DIR/HEAD"` && |
| GIT_EXTERNAL_DIFF=git-apply-patch-script git-diff-tree -p $commit && |
| git-commit-script -C "$commit" || { |
| git-read-tree --reset -u $S |
| echo Some commits could not be rebased, check by hand: |