3 # Copyright (c) 2010 Junio C Hamano.
8 git am
--resolved --resolvemsg="$resolvemsg" &&
9 move_to_original_branch
13 git am
--skip --resolvemsg="$resolvemsg" &&
14 move_to_original_branch
19 test -n "$rebase_root" && root_flag
=--root
21 if test -n "$keep_empty"
23 # we have to do this the hard way. git format-patch completely squashes
24 # empty commits and even if it didn't the format doesn't really lend
25 # itself well to recording empty patches. fortunately, cherry-pick
27 git cherry-pick
--allow-empty "$revisions"
29 git format-patch
-k --stdout --full-index --ignore-if-in-upstream \
30 --src-prefix=a
/ --dst-prefix=b
/ \
31 --no-renames $root_flag "$revisions" |
32 git am
$git_am_opt --rebasing --resolvemsg="$resolvemsg"
33 fi && move_to_original_branch
36 test 0 != $ret -a -d "$state_dir" && write_basic_state