Initial bulk commit for "Git on MSys"
[msysgit/historical-msysgit.git] / git / t / t3200-branch.sh
bloba891fa47d33e96a7ded21d54c143f1424f266b64
1 #!/bin/sh
3 # Copyright (c) 2005 Amos Waterland
6 test_description='git branch --foo should not create bogus branch
8 This test runs git branch --help and checks that the argument is properly
9 handled. Specifically, that a bogus branch is not created.
11 . ./test-lib.sh
13 test_expect_success \
14 'prepare a trivial repository' \
15 'echo Hello > A &&
16 git update-index --add A &&
17 git-commit -m "Initial commit." &&
18 HEAD=$(git rev-parse --verify HEAD)'
20 test_expect_failure \
21 'git branch --help should not have created a bogus branch' \
22 'git branch --help </dev/null >/dev/null 2>/dev/null || :
23 test -f .git/refs/heads/--help'
25 test_expect_success \
26 'git branch abc should create a branch' \
27 'git branch abc && test -f .git/refs/heads/abc'
29 test_expect_success \
30 'git branch a/b/c should create a branch' \
31 'git branch a/b/c && test -f .git/refs/heads/a/b/c'
33 cat >expect <<EOF
34 0000000000000000000000000000000000000000 $HEAD $GIT_COMMITTER_NAME <$GIT_COMMITTER_EMAIL> 1117150200 +0000 branch: Created from master
35 EOF
36 test_expect_success \
37 'git branch -l d/e/f should create a branch and a log' \
38 'GIT_COMMITTER_DATE="2005-05-26 23:30" \
39 git branch -l d/e/f &&
40 test -f .git/refs/heads/d/e/f &&
41 test -f .git/logs/refs/heads/d/e/f &&
42 diff expect .git/logs/refs/heads/d/e/f'
44 test_expect_success \
45 'git branch -d d/e/f should delete a branch and a log' \
46 'git branch -d d/e/f &&
47 test ! -f .git/refs/heads/d/e/f &&
48 test ! -f .git/logs/refs/heads/d/e/f'
50 test_expect_success \
51 'git branch j/k should work after branch j has been deleted' \
52 'git branch j &&
53 git branch -d j &&
54 git branch j/k'
56 test_expect_success \
57 'git branch l should work after branch l/m has been deleted' \
58 'git branch l/m &&
59 git branch -d l/m &&
60 git branch l'
62 test_expect_success \
63 'git branch -m m m/m should work' \
64 'git branch -l m &&
65 git branch -m m m/m &&
66 test -f .git/logs/refs/heads/m/m'
68 test_expect_success \
69 'git branch -m n/n n should work' \
70 'git branch -l n/n &&
71 git branch -m n/n n
72 test -f .git/logs/refs/heads/n'
74 test_expect_failure \
75 'git branch -m o/o o should fail when o/p exists' \
76 'git branch o/o &&
77 git branch o/p &&
78 git branch -m o/o o'
80 test_expect_failure \
81 'git branch -m q r/q should fail when r exists' \
82 'git branch q &&
83 git branch r &&
84 git branch -m q r/q'
86 mv .git/config .git/config-saved
88 test_expect_success 'git branch -m q q2 without config should succeed' '
89 git branch -m q q2 &&
90 git branch -m q2 q
93 mv .git/config-saved .git/config
95 git config branch.s/s.dummy Hello
97 test_expect_success \
98 'git branch -m s/s s should work when s/t is deleted' \
99 'git branch -l s/s &&
100 test -f .git/logs/refs/heads/s/s &&
101 git branch -l s/t &&
102 test -f .git/logs/refs/heads/s/t &&
103 git branch -d s/t &&
104 git branch -m s/s s &&
105 test -f .git/logs/refs/heads/s'
107 test_expect_success 'config information was renamed, too' \
108 "test $(git config branch.s.dummy) = Hello &&
109 ! git config branch.s/s/dummy"
111 test "$no_symlinks" || {
112 test_expect_failure \
113 'git branch -m u v should fail when the reflog for u is a symlink' \
114 'git branch -l u &&
115 mv .git/logs/refs/heads/u real-u &&
116 ln -s real-u .git/logs/refs/heads/u &&
117 git branch -m u v'
120 test_expect_success 'test tracking setup via --track' \
121 'git config remote.local.url . &&
122 git config remote.local.fetch refs/heads/*:refs/remotes/local/* &&
123 (git show-ref -q refs/remotes/local/master || git-fetch local) &&
124 git branch --track my1 local/master &&
125 test $(git config branch.my1.remote) = local &&
126 test $(git config branch.my1.merge) = refs/heads/master'
128 test_expect_success 'test tracking setup (non-wildcard, matching)' \
129 'git config remote.local.url . &&
130 git config remote.local.fetch refs/heads/master:refs/remotes/local/master &&
131 (git show-ref -q refs/remotes/local/master || git-fetch local) &&
132 git branch --track my4 local/master &&
133 test $(git config branch.my4.remote) = local &&
134 test $(git config branch.my4.merge) = refs/heads/master'
136 test_expect_success 'test tracking setup (non-wildcard, not matching)' \
137 'git config remote.local.url . &&
138 git config remote.local.fetch refs/heads/s:refs/remotes/local/s &&
139 (git show-ref -q refs/remotes/local/master || git-fetch local) &&
140 git branch --track my5 local/master &&
141 ! test "$(git config branch.my5.remote)" = local &&
142 ! test "$(git config branch.my5.merge)" = refs/heads/master'
144 test_expect_success 'test tracking setup via config' \
145 'git config branch.autosetupmerge true &&
146 git config remote.local.url . &&
147 git config remote.local.fetch refs/heads/*:refs/remotes/local/* &&
148 (git show-ref -q refs/remotes/local/master || git-fetch local) &&
149 git branch my3 local/master &&
150 test $(git config branch.my3.remote) = local &&
151 test $(git config branch.my3.merge) = refs/heads/master'
153 test_expect_success 'avoid ambiguous track' '
154 git config branch.autosetupmerge true &&
155 git config remote.ambi1.url = lalala &&
156 git config remote.ambi1.fetch = refs/heads/lalala:refs/heads/master &&
157 git config remote.ambi2.url = lilili &&
158 git config remote.ambi2.fetch = refs/heads/lilili:refs/heads/master &&
159 git branch all1 master &&
160 test -z "$(git config branch.all1.merge)"
163 test_expect_success 'test overriding tracking setup via --no-track' \
164 'git config branch.autosetupmerge true &&
165 git config remote.local.url . &&
166 git config remote.local.fetch refs/heads/*:refs/remotes/local/* &&
167 (git show-ref -q refs/remotes/local/master || git-fetch local) &&
168 git branch --no-track my2 local/master &&
169 git config branch.autosetupmerge false &&
170 ! test "$(git config branch.my2.remote)" = local &&
171 ! test "$(git config branch.my2.merge)" = refs/heads/master'
173 test_expect_success 'no tracking without .fetch entries' \
174 'git branch --track my6 s &&
175 test -z "$(git config branch.my6.remote)" &&
176 test -z "$(git config branch.my6.merge)"'
178 test_expect_success 'test tracking setup via --track but deeper' \
179 'git config remote.local.url . &&
180 git config remote.local.fetch refs/heads/*:refs/remotes/local/* &&
181 (git show-ref -q refs/remotes/local/o/o || git-fetch local) &&
182 git branch --track my7 local/o/o &&
183 test "$(git config branch.my7.remote)" = local &&
184 test "$(git config branch.my7.merge)" = refs/heads/o/o'
186 test_expect_success 'test deleting branch deletes branch config' \
187 'git branch -d my7 &&
188 test -z "$(git config branch.my7.remote)" &&
189 test -z "$(git config branch.my7.merge)"'
191 test_expect_success 'test deleting branch without config' \
192 'git branch my7 s &&
193 test "$(git branch -d my7 2>&1)" = "Deleted branch my7."'
195 # Keep this test last, as it changes the current branch
196 cat >expect <<EOF
197 0000000000000000000000000000000000000000 $HEAD $GIT_COMMITTER_NAME <$GIT_COMMITTER_EMAIL> 1117150200 +0000 branch: Created from master
199 test_expect_success \
200 'git checkout -b g/h/i -l should create a branch and a log' \
201 'GIT_COMMITTER_DATE="2005-05-26 23:30" \
202 git-checkout -b g/h/i -l master &&
203 test -f .git/refs/heads/g/h/i &&
204 test -f .git/logs/refs/heads/g/h/i &&
205 diff expect .git/logs/refs/heads/g/h/i'
207 test_done