summaryrefslogtreecommitdiff
path: root/git-rebase--am.sh
blob: 263987c55db053b3cb5455704b5206f272599fb8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
#!/bin/sh
#
# Copyright (c) 2010 Junio C Hamano.
#
 
. git-sh-setup
 
case "$action" in
continue)
	git am --resolved --3way --resolvemsg="$resolvemsg" &&
	move_to_original_branch
	exit
	;;
skip)
	git am --skip -3 --resolvemsg="$resolvemsg" &&
	move_to_original_branch
	exit
	;;
esac
 
test -n "$rebase_root" && root_flag=--root
 
git format-patch -k --stdout --full-index --ignore-if-in-upstream \
	--src-prefix=a/ --dst-prefix=b/ \
	--no-renames $root_flag "$revisions" |
git am $git_am_opt --rebasing --resolvemsg="$resolvemsg" &&
move_to_original_branch
ret=$?
test 0 != $ret -a -d "$state_dir" &&
	echo $head_name > "$state_dir/head-name" &&
	echo $onto > "$state_dir/onto" &&
	echo $orig_head > "$state_dir/orig-head" &&
	echo "$GIT_QUIET" > "$state_dir/quiet"
exit $ret