summaryrefslogtreecommitdiff
path: root/t
diff options
context:
space:
mode:
authorLibravatar Junio C Hamano <gitster@pobox.com>2016-03-16 14:13:25 -0700
committerLibravatar Junio C Hamano <gitster@pobox.com>2016-03-16 14:13:25 -0700
commita0e305c2367b6aa1158bed7022083b1541cefda2 (patch)
tree33986342e2e668146e67d4d5efee19518fe4e380 /t
parentSync with maint (diff)
parentgit-svn: fix URL canonicalization during init w/ SVN 1.7+ (diff)
downloadtgif-a0e305c2367b6aa1158bed7022083b1541cefda2.tar.xz
Merge branch 'master' of git://bogomips.org/git-svn
* 'master' of git://bogomips.org/git-svn: git-svn: fix URL canonicalization during init w/ SVN 1.7+ t9117: test specifying full url to git svn init -T
Diffstat (limited to 't')
-rwxr-xr-xt/t9117-git-svn-init-clone.sh6
1 files changed, 6 insertions, 0 deletions
diff --git a/t/t9117-git-svn-init-clone.sh b/t/t9117-git-svn-init-clone.sh
index a66f43c6b1..69a675052e 100755
--- a/t/t9117-git-svn-init-clone.sh
+++ b/t/t9117-git-svn-init-clone.sh
@@ -119,4 +119,10 @@ test_expect_success 'clone with -s/-T/-b/-t and --prefix "" still works' '
rm -f warning
'
+test_expect_success 'init with -T as a full url works' '
+ test ! -d project &&
+ git svn init -T "$svnrepo"/project/trunk project &&
+ rm -rf project
+ '
+
test_done