summaryrefslogtreecommitdiff
path: root/t/t0002-gitfile.sh
diff options
context:
space:
mode:
authorNguyễn Thái Ngọc Duy <pclouds@gmail.com>2015-09-28 13:06:14 (GMT)
committerJunio C Hamano <gitster@pobox.com>2015-09-28 17:46:33 (GMT)
commit1f5fbe1fe2d04f6386cf8febc1ce308bcf815592 (patch)
tree9d3691b5bcd0b1e8c47318786024dd8b25af5ea6 /t/t0002-gitfile.sh
parent0f64cc407f32f979c8bcfa7d3d9b24d8e023df35 (diff)
downloadgit-1f5fbe1fe2d04f6386cf8febc1ce308bcf815592.zip
git-1f5fbe1fe2d04f6386cf8febc1ce308bcf815592.tar.gz
git-1f5fbe1fe2d04f6386cf8febc1ce308bcf815592.tar.bz2
enter_repo: allow .git files in strict mode
Strict mode is about not guessing where .git is. If the user points to a .git file, we know exactly where the target .git dir will be. This makes it possible to serve .git files as repository on the server side. This may be needed even in local clone case because transport.c code uses upload-pack for fetching remote refs. But right now the clone/transport code goes with non-strict. Signed-off-by: Nguyễn Thái Ngọc Duy <pclouds@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 't/t0002-gitfile.sh')
-rwxr-xr-xt/t0002-gitfile.sh10
1 files changed, 10 insertions, 0 deletions
diff --git a/t/t0002-gitfile.sh b/t/t0002-gitfile.sh
index 2e709cc..9670e8c 100755
--- a/t/t0002-gitfile.sh
+++ b/t/t0002-gitfile.sh
@@ -148,4 +148,14 @@ test_expect_success 'enter_repo linked checkout' '
test_cmp expected actual
'
+test_expect_success 'enter_repo strict mode' '
+ git ls-remote --upload-pack="git upload-pack --strict" foo/.git >actual &&
+ cat >expected <<-\EOF &&
+ 946e985ab20de757ca5b872b16d64e92ff3803a9 HEAD
+ 946e985ab20de757ca5b872b16d64e92ff3803a9 refs/heads/master
+ 946e985ab20de757ca5b872b16d64e92ff3803a9 refs/tags/foo
+ EOF
+ test_cmp expected actual
+'
+
test_done