2013-11-25 22:03:52 +01:00
|
|
|
# This shell script fragment is sourced by git-rebase to implement
|
|
|
|
# its default, fast, patch-based, non-interactive mode.
|
2011-02-06 19:43:48 +01:00
|
|
|
#
|
|
|
|
# Copyright (c) 2010 Junio C Hamano.
|
|
|
|
#
|
|
|
|
|
2014-04-11 10:28:17 +02:00
|
|
|
git_rebase__am () {
|
|
|
|
|
2011-02-06 19:43:48 +01:00
|
|
|
case "$action" in
|
|
|
|
continue)
|
2014-02-10 02:03:37 +01:00
|
|
|
git am --resolved --resolvemsg="$resolvemsg" \
|
|
|
|
${gpg_sign_opt:+"$gpg_sign_opt"} &&
|
2011-02-06 19:43:48 +01:00
|
|
|
move_to_original_branch
|
2013-05-12 13:56:38 +02:00
|
|
|
return
|
2011-02-06 19:43:48 +01:00
|
|
|
;;
|
|
|
|
skip)
|
2011-02-06 19:43:58 +01:00
|
|
|
git am --skip --resolvemsg="$resolvemsg" &&
|
2011-02-06 19:43:48 +01:00
|
|
|
move_to_original_branch
|
2013-05-12 13:56:38 +02:00
|
|
|
return
|
2011-02-06 19:43:48 +01:00
|
|
|
;;
|
2018-02-11 10:43:27 +01:00
|
|
|
show-current-patch)
|
|
|
|
exec git am --show-current-patch
|
|
|
|
;;
|
2011-02-06 19:43:48 +01:00
|
|
|
esac
|
|
|
|
|
2014-07-15 21:14:02 +02:00
|
|
|
if test -z "$rebase_root"
|
|
|
|
# this is now equivalent to ! -z "$upstream"
|
|
|
|
then
|
|
|
|
revisions=$upstream...$orig_head
|
|
|
|
else
|
|
|
|
revisions=$onto...$orig_head
|
|
|
|
fi
|
2011-02-06 19:43:48 +01:00
|
|
|
|
2012-10-11 05:54:03 +02:00
|
|
|
ret=0
|
2018-03-20 12:10:57 +01:00
|
|
|
rm -f "$GIT_DIR/rebased-patches"
|
2012-10-11 05:54:03 +02:00
|
|
|
|
2018-03-20 12:10:57 +01:00
|
|
|
git format-patch -k --stdout --full-index --cherry-pick --right-only \
|
|
|
|
--src-prefix=a/ --dst-prefix=b/ --no-renames --no-cover-letter \
|
|
|
|
--pretty=mboxrd \
|
|
|
|
$git_format_patch_opt \
|
|
|
|
"$revisions" ${restrict_revision+^$restrict_revision} \
|
|
|
|
>"$GIT_DIR/rebased-patches"
|
|
|
|
ret=$?
|
2012-10-11 05:54:03 +02:00
|
|
|
|
2018-03-20 12:10:57 +01:00
|
|
|
if test 0 != $ret
|
|
|
|
then
|
|
|
|
rm -f "$GIT_DIR/rebased-patches"
|
|
|
|
case "$head_name" in
|
|
|
|
refs/heads/*)
|
|
|
|
git checkout -q "$head_name"
|
|
|
|
;;
|
|
|
|
*)
|
|
|
|
git checkout -q "$orig_head"
|
|
|
|
;;
|
|
|
|
esac
|
2012-10-11 05:54:03 +02:00
|
|
|
|
2018-03-20 12:10:57 +01:00
|
|
|
cat >&2 <<-EOF
|
2012-10-11 05:54:03 +02:00
|
|
|
|
2018-03-20 12:10:57 +01:00
|
|
|
git encountered an error while preparing the patches to replay
|
|
|
|
these revisions:
|
2012-10-11 05:54:03 +02:00
|
|
|
|
2018-03-20 12:10:57 +01:00
|
|
|
$revisions
|
2012-10-11 05:54:03 +02:00
|
|
|
|
2018-03-20 12:10:57 +01:00
|
|
|
As a result, git cannot rebase them.
|
|
|
|
EOF
|
|
|
|
return $ret
|
|
|
|
fi
|
2012-10-11 05:54:03 +02:00
|
|
|
|
2018-03-20 12:10:57 +01:00
|
|
|
git am $git_am_opt --rebasing --resolvemsg="$resolvemsg" \
|
|
|
|
--patch-format=mboxrd \
|
|
|
|
$allow_rerere_autoupdate \
|
|
|
|
${gpg_sign_opt:+"$gpg_sign_opt"} <"$GIT_DIR/rebased-patches"
|
|
|
|
ret=$?
|
2012-10-11 05:54:03 +02:00
|
|
|
|
2018-03-20 12:10:57 +01:00
|
|
|
rm -f "$GIT_DIR/rebased-patches"
|
2012-10-11 05:54:03 +02:00
|
|
|
|
|
|
|
if test 0 != $ret
|
|
|
|
then
|
|
|
|
test -d "$state_dir" && write_basic_state
|
2013-05-12 13:56:38 +02:00
|
|
|
return $ret
|
2012-10-11 05:54:03 +02:00
|
|
|
fi
|
2012-04-20 16:36:17 +02:00
|
|
|
|
2012-10-11 05:54:03 +02:00
|
|
|
move_to_original_branch
|
2014-04-11 10:28:17 +02:00
|
|
|
|
|
|
|
}
|