mingw: handle GITPERLLIB in t0021 in a Windows-compatible way
[git.git] / t / t2025-worktree-add.sh
blob2b959449730e14dd4e650ce9115a463d71eedca4
1 #!/bin/sh
3 test_description='test git worktree add'
5 . ./test-lib.sh
7 . "$TEST_DIRECTORY"/lib-rebase.sh
9 test_expect_success 'setup' '
10 test_commit init
13 test_expect_success '"add" an existing worktree' '
14 mkdir -p existing/subtree &&
15 test_must_fail git worktree add --detach existing master
18 test_expect_success '"add" an existing empty worktree' '
19 mkdir existing_empty &&
20 git worktree add --detach existing_empty master
23 test_expect_success '"add" using shorthand - fails when no previous branch' '
24 test_must_fail git worktree add existing_short -
27 test_expect_success '"add" using - shorthand' '
28 git checkout -b newbranch &&
29 echo hello >myworld &&
30 git add myworld &&
31 git commit -m myworld &&
32 git checkout master &&
33 git worktree add short-hand - &&
34 echo refs/heads/newbranch >expect &&
35 git -C short-hand rev-parse --symbolic-full-name HEAD >actual &&
36 test_cmp expect actual
39 test_expect_success '"add" refuses to checkout locked branch' '
40 test_must_fail git worktree add zere master &&
41 ! test -d zere &&
42 ! test -d .git/worktrees/zere
45 test_expect_success 'checking out paths not complaining about linked checkouts' '
47 cd existing_empty &&
48 echo dirty >>init.t &&
49 git checkout master -- init.t
53 test_expect_success '"add" worktree' '
54 git rev-parse HEAD >expect &&
55 git worktree add --detach here master &&
57 cd here &&
58 test_cmp ../init.t init.t &&
59 test_must_fail git symbolic-ref HEAD &&
60 git rev-parse HEAD >actual &&
61 test_cmp ../expect actual &&
62 git fsck
66 test_expect_success '"add" worktree with lock' '
67 git rev-parse HEAD >expect &&
68 git worktree add --detach --lock here-with-lock master &&
69 test -f .git/worktrees/here-with-lock/locked
72 test_expect_success '"add" worktree from a subdir' '
74 mkdir sub &&
75 cd sub &&
76 git worktree add --detach here master &&
77 cd here &&
78 test_cmp ../../init.t init.t
82 test_expect_success '"add" from a linked checkout' '
84 cd here &&
85 git worktree add --detach nested-here master &&
86 cd nested-here &&
87 git fsck
91 test_expect_success '"add" worktree creating new branch' '
92 git worktree add -b newmaster there master &&
94 cd there &&
95 test_cmp ../init.t init.t &&
96 git symbolic-ref HEAD >actual &&
97 echo refs/heads/newmaster >expect &&
98 test_cmp expect actual &&
99 git fsck
103 test_expect_success 'die the same branch is already checked out' '
105 cd here &&
106 test_must_fail git checkout newmaster
110 test_expect_success SYMLINKS 'die the same branch is already checked out (symlink)' '
111 head=$(git -C there rev-parse --git-path HEAD) &&
112 ref=$(git -C there symbolic-ref HEAD) &&
113 rm "$head" &&
114 ln -s "$ref" "$head" &&
115 test_must_fail git -C here checkout newmaster
118 test_expect_success 'not die the same branch is already checked out' '
120 cd here &&
121 git worktree add --force anothernewmaster newmaster
125 test_expect_success 'not die on re-checking out current branch' '
127 cd there &&
128 git checkout newmaster
132 test_expect_success '"add" from a bare repo' '
134 git clone --bare . bare &&
135 cd bare &&
136 git worktree add -b bare-master ../there2 master
140 test_expect_success 'checkout from a bare repo without "add"' '
142 cd bare &&
143 test_must_fail git checkout master
147 test_expect_success '"add" default branch of a bare repo' '
149 git clone --bare . bare2 &&
150 cd bare2 &&
151 git worktree add ../there3 master
155 test_expect_success 'checkout with grafts' '
156 test_when_finished rm .git/info/grafts &&
157 test_commit abc &&
158 SHA1=$(git rev-parse HEAD) &&
159 test_commit def &&
160 test_commit xyz &&
161 echo "$(git rev-parse HEAD) $SHA1" >.git/info/grafts &&
162 cat >expected <<-\EOF &&
166 git log --format=%s -2 >actual &&
167 test_cmp expected actual &&
168 git worktree add --detach grafted master &&
169 git --git-dir=grafted/.git log --format=%s -2 >actual &&
170 test_cmp expected actual
173 test_expect_success '"add" from relative HEAD' '
174 test_commit a &&
175 test_commit b &&
176 test_commit c &&
177 git rev-parse HEAD~1 >expected &&
178 git worktree add relhead HEAD~1 &&
179 git -C relhead rev-parse HEAD >actual &&
180 test_cmp expected actual
183 test_expect_success '"add -b" with <branch> omitted' '
184 git worktree add -b burble flornk &&
185 test_cmp_rev HEAD burble
188 test_expect_success '"add --detach" with <branch> omitted' '
189 git worktree add --detach fishhook &&
190 git rev-parse HEAD >expected &&
191 git -C fishhook rev-parse HEAD >actual &&
192 test_cmp expected actual &&
193 test_must_fail git -C fishhook symbolic-ref HEAD
196 test_expect_success '"add" with <branch> omitted' '
197 git worktree add wiffle/bat &&
198 test_cmp_rev HEAD bat
201 test_expect_success '"add" auto-vivify does not clobber existing branch' '
202 test_commit c1 &&
203 test_commit c2 &&
204 git branch precious HEAD~1 &&
205 test_must_fail git worktree add precious &&
206 test_cmp_rev HEAD~1 precious &&
207 test_path_is_missing precious
210 test_expect_success '"add" no auto-vivify with --detach and <branch> omitted' '
211 git worktree add --detach mish/mash &&
212 test_must_fail git rev-parse mash -- &&
213 test_must_fail git -C mish/mash symbolic-ref HEAD
216 test_expect_success '"add" -b/-B mutually exclusive' '
217 test_must_fail git worktree add -b poodle -B poodle bamboo master
220 test_expect_success '"add" -b/--detach mutually exclusive' '
221 test_must_fail git worktree add -b poodle --detach bamboo master
224 test_expect_success '"add" -B/--detach mutually exclusive' '
225 test_must_fail git worktree add -B poodle --detach bamboo master
228 test_expect_success '"add -B" fails if the branch is checked out' '
229 git rev-parse newmaster >before &&
230 test_must_fail git worktree add -B newmaster bamboo master &&
231 git rev-parse newmaster >after &&
232 test_cmp before after
235 test_expect_success 'add -B' '
236 git worktree add -B poodle bamboo2 master^ &&
237 git -C bamboo2 symbolic-ref HEAD >actual &&
238 echo refs/heads/poodle >expected &&
239 test_cmp expected actual &&
240 test_cmp_rev master^ poodle
243 test_expect_success 'local clone from linked checkout' '
244 git clone --local here here-clone &&
245 ( cd here-clone && git fsck )
248 test_expect_success 'local clone --shared from linked checkout' '
249 git -C bare worktree add --detach ../baretree &&
250 git clone --local --shared baretree bare-clone &&
251 grep /bare/ bare-clone/.git/objects/info/alternates
254 test_expect_success '"add" worktree with --no-checkout' '
255 git worktree add --no-checkout -b swamp swamp &&
256 ! test -e swamp/init.t &&
257 git -C swamp reset --hard &&
258 test_cmp init.t swamp/init.t
261 test_expect_success '"add" worktree with --checkout' '
262 git worktree add --checkout -b swmap2 swamp2 &&
263 test_cmp init.t swamp2/init.t
266 test_expect_success 'put a worktree under rebase' '
267 git worktree add under-rebase &&
269 cd under-rebase &&
270 set_fake_editor &&
271 FAKE_LINES="edit 1" git rebase -i HEAD^ &&
272 git worktree list | grep "under-rebase.*detached HEAD"
276 test_expect_success 'add a worktree, checking out a rebased branch' '
277 test_must_fail git worktree add new-rebase under-rebase &&
278 ! test -d new-rebase
281 test_expect_success 'checking out a rebased branch from another worktree' '
282 git worktree add new-place &&
283 test_must_fail git -C new-place checkout under-rebase
286 test_expect_success 'not allow to delete a branch under rebase' '
288 cd under-rebase &&
289 test_must_fail git branch -D under-rebase
293 test_expect_success 'rename a branch under rebase not allowed' '
294 test_must_fail git branch -M under-rebase rebase-with-new-name
297 test_expect_success 'check out from current worktree branch ok' '
299 cd under-rebase &&
300 git checkout under-rebase &&
301 git checkout - &&
302 git rebase --abort
306 test_expect_success 'checkout a branch under bisect' '
307 git worktree add under-bisect &&
309 cd under-bisect &&
310 git bisect start &&
311 git bisect bad &&
312 git bisect good HEAD~2 &&
313 git worktree list | grep "under-bisect.*detached HEAD" &&
314 test_must_fail git worktree add new-bisect under-bisect &&
315 ! test -d new-bisect
319 test_expect_success 'rename a branch under bisect not allowed' '
320 test_must_fail git branch -M under-bisect bisect-with-new-name
322 # Is branch "refs/heads/$1" set to pull from "$2/$3"?
323 test_branch_upstream () {
324 printf "%s\n" "$2" "refs/heads/$3" >expect.upstream &&
326 git config "branch.$1.remote" &&
327 git config "branch.$1.merge"
328 } >actual.upstream &&
329 test_cmp expect.upstream actual.upstream
332 test_expect_success '--track sets up tracking' '
333 test_when_finished rm -rf track &&
334 git worktree add --track -b track track master &&
335 test_branch_upstream track . master
338 # setup remote repository $1 and repository $2 with $1 set up as
339 # remote. The remote has two branches, master and foo.
340 setup_remote_repo () {
341 git init $1 &&
343 cd $1 &&
344 test_commit $1_master &&
345 git checkout -b foo &&
346 test_commit upstream_foo
347 ) &&
348 git init $2 &&
350 cd $2 &&
351 test_commit $2_master &&
352 git remote add $1 ../$1 &&
353 git config remote.$1.fetch \
354 "refs/heads/*:refs/remotes/$1/*" &&
355 git fetch --all
359 test_expect_success '--no-track avoids setting up tracking' '
360 test_when_finished rm -rf repo_upstream repo_local foo &&
361 setup_remote_repo repo_upstream repo_local &&
363 cd repo_local &&
364 git worktree add --no-track -b foo ../foo repo_upstream/foo
365 ) &&
367 cd foo &&
368 test_must_fail git config "branch.foo.remote" &&
369 test_must_fail git config "branch.foo.merge" &&
370 test_cmp_rev refs/remotes/repo_upstream/foo refs/heads/foo
374 test_expect_success '"add" <path> <non-existent-branch> fails' '
375 test_must_fail git worktree add foo non-existent
378 test_expect_success '"add" <path> <branch> dwims' '
379 test_when_finished rm -rf repo_upstream repo_dwim foo &&
380 setup_remote_repo repo_upstream repo_dwim &&
381 git init repo_dwim &&
383 cd repo_dwim &&
384 git worktree add ../foo foo
385 ) &&
387 cd foo &&
388 test_branch_upstream foo repo_upstream foo &&
389 test_cmp_rev refs/remotes/repo_upstream/foo refs/heads/foo
393 test_expect_success 'git worktree add does not match remote' '
394 test_when_finished rm -rf repo_a repo_b foo &&
395 setup_remote_repo repo_a repo_b &&
397 cd repo_b &&
398 git worktree add ../foo
399 ) &&
401 cd foo &&
402 test_must_fail git config "branch.foo.remote" &&
403 test_must_fail git config "branch.foo.merge" &&
404 ! test_cmp_rev refs/remotes/repo_a/foo refs/heads/foo
408 test_expect_success 'git worktree add --guess-remote sets up tracking' '
409 test_when_finished rm -rf repo_a repo_b foo &&
410 setup_remote_repo repo_a repo_b &&
412 cd repo_b &&
413 git worktree add --guess-remote ../foo
414 ) &&
416 cd foo &&
417 test_branch_upstream foo repo_a foo &&
418 test_cmp_rev refs/remotes/repo_a/foo refs/heads/foo
422 test_expect_success 'git worktree add with worktree.guessRemote sets up tracking' '
423 test_when_finished rm -rf repo_a repo_b foo &&
424 setup_remote_repo repo_a repo_b &&
426 cd repo_b &&
427 git config worktree.guessRemote true &&
428 git worktree add ../foo
429 ) &&
431 cd foo &&
432 test_branch_upstream foo repo_a foo &&
433 test_cmp_rev refs/remotes/repo_a/foo refs/heads/foo
437 test_expect_success 'git worktree --no-guess-remote option overrides config' '
438 test_when_finished rm -rf repo_a repo_b foo &&
439 setup_remote_repo repo_a repo_b &&
441 cd repo_b &&
442 git config worktree.guessRemote true &&
443 git worktree add --no-guess-remote ../foo
444 ) &&
446 cd foo &&
447 test_must_fail git config "branch.foo.remote" &&
448 test_must_fail git config "branch.foo.merge" &&
449 ! test_cmp_rev refs/remotes/repo_a/foo refs/heads/foo
453 post_checkout_hook () {
454 test_when_finished "rm -f .git/hooks/post-checkout" &&
455 mkdir -p .git/hooks &&
456 write_script .git/hooks/post-checkout <<-\EOF
457 echo $* >hook.actual
461 test_expect_success '"add" invokes post-checkout hook (branch)' '
462 post_checkout_hook &&
463 printf "%s %s 1\n" $_z40 $(git rev-parse HEAD) >hook.expect &&
464 git worktree add gumby &&
465 test_cmp hook.expect hook.actual
468 test_expect_success '"add" invokes post-checkout hook (detached)' '
469 post_checkout_hook &&
470 printf "%s %s 1\n" $_z40 $(git rev-parse HEAD) >hook.expect &&
471 git worktree add --detach grumpy &&
472 test_cmp hook.expect hook.actual
475 test_expect_success '"add --no-checkout" suppresses post-checkout hook' '
476 post_checkout_hook &&
477 rm -f hook.actual &&
478 git worktree add --no-checkout gloopy &&
479 test_path_is_missing hook.actual
482 test_done