3 # Copyright (c) 2006 Yann Dirson, based on t3400 by Amos Waterland
6 test_description
='git rebase should detect patches integrated upstream
8 This test cherry-picks one local change of two into master branch, and
9 checks that git rebase succeeds with only the second patch in the
15 'prepare repository with topic branch' \
17 git-update-index --add A &&
18 git-commit -m "Add A." &&
20 git-checkout -b my-topic-branch &&
23 git-update-index --add B &&
24 git-commit -m "Add B." &&
26 echo AnotherSecond > C &&
27 git-update-index --add C &&
28 git-commit -m "Add C." &&
30 git-checkout -f master &&
34 git-commit -m "Modify A."
38 'pick top patch from topic branch into master' \
39 'git-cherry-pick my-topic-branch^0 &&
40 git-checkout -f my-topic-branch
45 git-format-patch -k --stdout --full-index master >/dev/null &&
50 'rebase topic branch against new master and check git-am did not get halted' \
51 'git-rebase master && test ! -d .dotest'