Junio C Hamano | ec0603e | 2007-07-12 01:04:16 -0700 | [diff] [blame] | 1 | #!/bin/sh |
| 2 | # |
| 3 | # Copyright (c) 2007 Junio C Hamano |
| 4 | |
| 5 | test_description='git checkout to switch between branches with symlink<->dir' |
| 6 | |
| 7 | . ./test-lib.sh |
| 8 | |
Ævar Arnfjörð Bjarmason | 41be8ea | 2010-07-28 10:34:55 +0000 | [diff] [blame] | 9 | test_expect_success SYMLINKS setup ' |
Junio C Hamano | ec0603e | 2007-07-12 01:04:16 -0700 | [diff] [blame] | 10 | |
| 11 | mkdir frotz && |
| 12 | echo hello >frotz/filfre && |
| 13 | git add frotz/filfre && |
| 14 | test_tick && |
| 15 | git commit -m "master has file frotz/filfre" && |
| 16 | |
| 17 | git branch side && |
| 18 | |
| 19 | echo goodbye >nitfol && |
Jonathan Nieder | a48fcd8 | 2010-10-30 20:46:54 -0500 | [diff] [blame] | 20 | git add nitfol && |
Junio C Hamano | ec0603e | 2007-07-12 01:04:16 -0700 | [diff] [blame] | 21 | test_tick && |
| 22 | git commit -m "master adds file nitfol" && |
| 23 | |
| 24 | git checkout side && |
| 25 | |
| 26 | git rm --cached frotz/filfre && |
| 27 | mv frotz xyzzy && |
| 28 | ln -s xyzzy frotz && |
| 29 | git add xyzzy/filfre frotz && |
| 30 | test_tick && |
| 31 | git commit -m "side moves frotz/ to xyzzy/ and adds frotz->xyzzy/" |
| 32 | |
| 33 | ' |
| 34 | |
Ævar Arnfjörð Bjarmason | 41be8ea | 2010-07-28 10:34:55 +0000 | [diff] [blame] | 35 | test_expect_success SYMLINKS 'switch from symlink to dir' ' |
Junio C Hamano | ec0603e | 2007-07-12 01:04:16 -0700 | [diff] [blame] | 36 | |
| 37 | git checkout master |
| 38 | |
| 39 | ' |
| 40 | |
Ævar Arnfjörð Bjarmason | 41be8ea | 2010-07-28 10:34:55 +0000 | [diff] [blame] | 41 | test_expect_success SYMLINKS 'Remove temporary directories & switch to master' ' |
Ævar Arnfjörð Bjarmason | 621fd7a | 2010-05-07 19:37:03 +0000 | [diff] [blame] | 42 | rm -fr frotz xyzzy nitfol && |
| 43 | git checkout -f master |
| 44 | ' |
Junio C Hamano | ec0603e | 2007-07-12 01:04:16 -0700 | [diff] [blame] | 45 | |
Ævar Arnfjörð Bjarmason | 41be8ea | 2010-07-28 10:34:55 +0000 | [diff] [blame] | 46 | test_expect_success SYMLINKS 'switch from dir to symlink' ' |
Junio C Hamano | ec0603e | 2007-07-12 01:04:16 -0700 | [diff] [blame] | 47 | |
| 48 | git checkout side |
| 49 | |
| 50 | ' |
| 51 | |
| 52 | test_done |