summaryrefslogtreecommitdiff
path: root/t
diff options
context:
space:
mode:
authorLibravatar Junio C Hamano <gitster@pobox.com>2012-07-22 12:55:47 -0700
committerLibravatar Junio C Hamano <gitster@pobox.com>2012-07-22 12:55:48 -0700
commit15b3c82cbb345c890400119134fb9709790696d8 (patch)
tree8afe28b48bb2f23dd5b0d364b186a102ae73b0dd /t
parentMerge branch 'ms/daemon-doc-typo' (diff)
parentsubmodules: don't stumble over symbolic links when cloning recursively (diff)
downloadtgif-15b3c82cbb345c890400119134fb9709790696d8.tar.xz
Merge branch 'jl/maint-1.7.10-recurse-submodules-with-symlink'
When "git submodule add" clones a submodule repository, it can get confused where to store the resulting submodule repository in the superproject's .git/ directory when there is a symbolic link in the path to the current directory. * jl/maint-1.7.10-recurse-submodules-with-symlink: submodules: don't stumble over symbolic links when cloning recursively
Diffstat (limited to 't')
-rwxr-xr-xt/t7406-submodule-update.sh13
1 files changed, 13 insertions, 0 deletions
diff --git a/t/t7406-submodule-update.sh b/t/t7406-submodule-update.sh
index dcb195b4cf..ce61d4c0fa 100755
--- a/t/t7406-submodule-update.sh
+++ b/t/t7406-submodule-update.sh
@@ -636,4 +636,17 @@ test_expect_success 'submodule update properly revives a moved submodule' '
)
'
+test_expect_success SYMLINKS 'submodule update can handle symbolic links in pwd' '
+ mkdir -p linked/dir &&
+ ln -s linked/dir linkto &&
+ (
+ cd linkto &&
+ git clone "$TRASH_DIRECTORY"/super_update_r2 super &&
+ (
+ cd super &&
+ git submodule update --init --recursive
+ )
+ )
+'
+
test_done