is_repository_shallow(): prototype fix.
[git/dscho.git] / t / t7201-co.sh
blob315fa3564c744e2601fc1469516337b436d056cb
1 #!/bin/sh
3 # Copyright (c) 2006 Junio C Hamano
6 test_description='git-checkout tests.'
8 . ./test-lib.sh
10 fill () {
11 for i
13 echo "$i"
14 done
18 test_expect_success setup '
20 fill 1 2 3 4 5 6 7 8 >one &&
21 fill a b c d e >two &&
22 git add one two &&
23 git commit -m "Initial A one, A two" &&
25 git checkout -b renamer &&
26 rm -f one &&
27 fill 1 3 4 5 6 7 8 >uno &&
28 git add uno &&
29 fill a b c d e f >two &&
30 git commit -a -m "Renamer R one->uno, M two" &&
32 git checkout -b side master &&
33 fill 1 2 3 4 5 6 7 >one &&
34 fill A B C D E >three &&
35 rm -f two &&
36 git update-index --add --remove one two three &&
37 git commit -m "Side M one, D two, A three" &&
39 git checkout master
42 test_expect_success "checkout from non-existing branch" '
44 git checkout -b delete-me master &&
45 rm .git/refs/heads/delete-me &&
46 test refs/heads/delete-me = "$(git symbolic-ref HEAD)" &&
47 git checkout master &&
48 test refs/heads/master = "$(git symbolic-ref HEAD)"
51 test_expect_success "checkout with dirty tree without -m" '
53 fill 0 1 2 3 4 5 6 7 8 >one &&
54 if git checkout side
55 then
56 echo Not happy
57 false
58 else
59 echo "happy - failed correctly"
64 test_expect_success "checkout -m with dirty tree" '
66 git checkout -f master &&
67 git clean &&
69 fill 0 1 2 3 4 5 6 7 8 >one &&
70 git checkout -m side &&
72 test "$(git symbolic-ref HEAD)" = "refs/heads/side" &&
74 fill "M one" "A three" "D two" >expect.master &&
75 git diff --name-status master >current.master &&
76 diff expect.master current.master &&
78 fill "M one" >expect.side &&
79 git diff --name-status side >current.side &&
80 diff expect.side current.side &&
82 : >expect.index &&
83 git diff --cached >current.index &&
84 diff expect.index current.index
87 test_expect_success "checkout -m with dirty tree, renamed" '
89 git checkout -f master && git clean &&
91 fill 1 2 3 4 5 7 8 >one &&
92 if git checkout renamer
93 then
94 echo Not happy
95 false
96 else
97 echo "happy - failed correctly"
98 fi &&
100 git checkout -m renamer &&
101 fill 1 3 4 5 7 8 >expect &&
102 diff expect uno &&
103 ! test -f one
106 test_done