1#!/bin/sh
2#
3# Copyright (c) 2006 Yann Dirson, based on t3400 by Amos Waterland
4#
56
test_description='git rebase should detect patches integrated upstream
78
This test cherry-picks one local change of two into master branch, and
9checks that git rebase succeeds with only the second patch in the
10local branch.
11'
12. ./test-lib.sh
1314
test_expect_success 'prepare repository with topic branch' '
15test_commit A &&
16git checkout -b my-topic-branch &&
17test_commit B &&
18test_commit C &&
19git checkout -f master &&
20test_commit A2 A.t
21'
2223
test_expect_success 'pick top patch from topic branch into master' '
24git cherry-pick C &&
25git checkout -f my-topic-branch
26'
2728
test_debug '
29git cherry master &&
30git format-patch -k --stdout --full-index master >/dev/null &&
31gitk --all & sleep 1
32'
3334
test_expect_success 'rebase topic branch against new master and check git am did not get halted' '
35git rebase master &&
36test_path_is_missing .git/rebase-apply
37'
3839
test_expect_success 'rebase --merge topic branch that was partially merged upstream' '
40git reset --hard C &&
41git rebase --merge master &&
42test_path_is_missing .git/rebase-merge
43'
4445
test_done