t7111: check that reset options work as described in the tables
[git/dscho.git] / t / t7103-reset-bare.sh
blob68041df5f49e046c2b7ccd1f3a1c71071498da39
1 #!/bin/sh
3 test_description='git reset in a bare repository'
4 . ./test-lib.sh
6 test_expect_success 'setup non-bare' '
7 echo one >file &&
8 git add file &&
9 git commit -m one &&
10 echo two >file &&
11 git commit -a -m two
14 test_expect_success 'hard reset requires a worktree' '
15 (cd .git &&
16 test_must_fail git reset --hard)
19 test_expect_success 'merge reset requires a worktree' '
20 (cd .git &&
21 test_must_fail git reset --merge)
24 test_expect_success 'mixed reset is ok' '
25 (cd .git && git reset)
28 test_expect_success 'soft reset is ok' '
29 (cd .git && git reset --soft)
32 test_expect_success 'setup bare' '
33 git clone --bare . bare.git &&
34 cd bare.git
37 test_expect_success 'hard reset is not allowed in bare' '
38 test_must_fail git reset --hard HEAD^
41 test_expect_success 'merge reset is not allowed in bare' '
42 test_must_fail git reset --merge HEAD^
45 test_expect_success 'mixed reset is not allowed in bare' '
46 test_must_fail git reset --mixed HEAD^
49 test_expect_success 'soft reset is allowed in bare' '
50 git reset --soft HEAD^ &&
51 test "`git show --pretty=format:%s | head -n 1`" = "one"
54 test_done