3 # Copyright (c) 2006 Junio C Hamano
6 test_description
='git-checkout tests.'
18 test_expect_success setup
'
20 fill 1 2 3 4 5 6 7 8 >one &&
21 fill a b c d e >two &&
23 git commit -m "Initial A one, A two" &&
25 git checkout -b renamer &&
27 fill 1 3 4 5 6 7 8 >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 &&
36 git update-index --add --remove one two three &&
37 git commit -m "Side M one, D two, A three" &&
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 &&
59 echo "happy - failed correctly"
64 test_expect_success
"checkout -m with dirty tree" '
66 git checkout -f master &&
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 &&
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
97 echo "happy - failed correctly"
100 git checkout -m renamer &&
101 fill 1 3 4 5 7 8 >expect &&
104 git diff --cached >current &&
109 test_expect_success
'checkout -m with merge conflict' '
111 git checkout -f master && git clean &&
113 fill 1 T 3 4 5 6 S 8 >one &&
114 if git checkout renamer
119 echo "happy - failed correctly"
122 git checkout -m renamer &&
124 git diff master:one :3:uno |
125 sed -e "1,/^@@/d" -e "/^ /d" -e "s/^-/d/" -e "s/^+/a/" >current &&
126 fill d2 aT d7 aS >expect &&
127 diff current expect &&
128 git diff --cached two >current &&