summaryrefslogtreecommitdiff
path: root/t/t5800-remote-helpers.sh
diff options
context:
space:
mode:
authorJeff King <peff@peff.net>2011-07-16 13:03:25 (GMT)
committerJunio C Hamano <gitster@pobox.com>2011-07-19 18:17:47 (GMT)
commit4e51ba238fb92ad732b4d34200fc8f53e29b333f (patch)
tree971454bf7c270112b351b8ce397bd6a00e0afd33 /t/t5800-remote-helpers.sh
parentc00dd33b1fe602520f7b0e54b2c4d83b03571053 (diff)
downloadgit-4e51ba238fb92ad732b4d34200fc8f53e29b333f.zip
git-4e51ba238fb92ad732b4d34200fc8f53e29b333f.tar.gz
git-4e51ba238fb92ad732b4d34200fc8f53e29b333f.tar.bz2
git-remote-testgit: import non-HEAD refs
Upon receiving an "import" command, the testgit remote helper would ignore the ref asked for by git and generate a fast-export stream based on HEAD. Instead, we should actually give git the ref it asked for. This requires adding a new parameter to the export_repo method in the remote-helpers python library, which may be used by code outside of git.git. We use a default parameter so that callers without the new parameter will get the same behavior as before. Signed-off-by: Jeff King <peff@peff.net> Signed-off-by: Sverre Rabbelier <srabbelier@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 't/t5800-remote-helpers.sh')
-rwxr-xr-xt/t5800-remote-helpers.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/t/t5800-remote-helpers.sh b/t/t5800-remote-helpers.sh
index 9db8ca8..ca115cc 100755
--- a/t/t5800-remote-helpers.sh
+++ b/t/t5800-remote-helpers.sh
@@ -85,7 +85,7 @@ test_expect_success 'pushing remote local repo' '
compare_refs clone HEAD server HEAD
'
-test_expect_failure 'fetch new branch' '
+test_expect_success 'fetch new branch' '
(cd public &&
git checkout -b new &&
echo content >>file &&