| # 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" |
| 1) upstream=`git-rev-parse --verify "$1"` && |
| ours=`git-rev-parse --verify HEAD` || exit |
| 2) upstream=`git-rev-parse --verify "$1"` && |
| ours=`git-rev-parse --verify "$2"` || exit |
| *) echo >&2 "$usage"; exit 1 ;; |
| git-read-tree -m -u $ours $upstream && |
| echo "$upstream" >"$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: |