Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.kernel.org/pub/scm/git/git.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/t
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2009-05-29 09:50:23 +0400
committerJunio C Hamano <gitster@pobox.com>2009-05-29 09:50:23 +0400
commita9d29038a7acc0d37f801a2a923826a3539f4ae6 (patch)
treeccf93e0bc010aa8ef831de56bf0b10f4149b19d1 /t
parent3902985a58d5b5f42406f11f1c8b9b87a98c7e3c (diff)
parent6a01554e6350123c78de805d820e90f1c56e5fdc (diff)
Merge branch 'maint'
* maint: fix segfault showing an empty remote
Diffstat (limited to 't')
-rwxr-xr-xt/t5505-remote.sh10
1 files changed, 10 insertions, 0 deletions
diff --git a/t/t5505-remote.sh b/t/t5505-remote.sh
index 5ec668d6d8..e70246b3fb 100755
--- a/t/t5505-remote.sh
+++ b/t/t5505-remote.sh
@@ -494,5 +494,15 @@ test_expect_success 'remote prune to cause a dangling symref' '
grep "dangling symref" err
'
+test_expect_success 'show empty remote' '
+
+ test_create_repo empty &&
+ git clone empty empty-clone &&
+ (
+ cd empty-clone &&
+ git remote show origin
+ )
+'
+
test_done