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