commit doc: document that -c, -C, -F and --fixup with -m error
[git.git] / t / t6041-bisect-submodule.sh
blob62b8a2e7bbd1cf26710be0a0eb90041d5e3f7d2c
1 #!/bin/sh
3 test_description='bisect can handle submodules'
5 . ./test-lib.sh
6 . "$TEST_DIRECTORY"/lib-submodule-update.sh
8 git_bisect () {
9 git status -su >expect &&
10 ls -1pR * >>expect &&
11 tar cf "$TRASH_DIRECTORY/tmp.tar" * &&
12 GOOD=$(git rev-parse --verify HEAD) &&
13 git checkout "$1" &&
14 echo "foo" >bar &&
15 git add bar &&
16 git commit -m "bisect bad" &&
17 BAD=$(git rev-parse --verify HEAD) &&
18 git reset --hard HEAD^^ &&
19 git submodule update &&
20 git bisect start &&
21 git bisect good $GOOD &&
22 rm -rf * &&
23 tar xf "$TRASH_DIRECTORY/tmp.tar" &&
24 git status -su >actual &&
25 ls -1pR * >>actual &&
26 test_cmp expect actual &&
27 git bisect bad $BAD
30 test_submodule_switch "git_bisect"
32 test_done