]> git.ipfire.org Git - thirdparty/git.git/blame - git-rebase--am.sh
Git 1.7.8-rc2
[thirdparty/git.git] / git-rebase--am.sh
CommitLineData
46df82d5
MZ
1#!/bin/sh
2#
3# Copyright (c) 2010 Junio C Hamano.
4#
5
6. git-sh-setup
7
8case "$action" in
9continue)
c5e610be 10 git am --resolved --resolvemsg="$resolvemsg" &&
46df82d5
MZ
11 move_to_original_branch
12 exit
13 ;;
14skip)
c5e610be 15 git am --skip --resolvemsg="$resolvemsg" &&
46df82d5
MZ
16 move_to_original_branch
17 exit
18 ;;
19esac
20
21test -n "$rebase_root" && root_flag=--root
22
23git format-patch -k --stdout --full-index --ignore-if-in-upstream \
24 --src-prefix=a/ --dst-prefix=b/ \
25 --no-renames $root_flag "$revisions" |
26git am $git_am_opt --rebasing --resolvemsg="$resolvemsg" &&
27move_to_original_branch
28ret=$?
84df4560 29test 0 != $ret -a -d "$state_dir" && write_basic_state
46df82d5 30exit $ret