summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 6ea9385)
raw | patch | inline | side by side (parent: 6ea9385)
author | Clemens Buchacher <drizzd@aon.at> | |
Wed, 4 Jan 2012 15:55:34 +0000 (16:55 +0100) | ||
committer | Junio C Hamano <gitster@pobox.com> | |
Wed, 4 Jan 2012 18:04:59 +0000 (10:04 -0800) |
Subsequently we assume that there is only one pack. Currently this is
true only by accident. Pass '-a -d' to repack in order to guarantee that
assumption to hold true.
The prune-packed command is now redundant since repack -d already calls
it.
Signed-off-by: Clemens Buchacher <drizzd@aon.at>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
true only by accident. Pass '-a -d' to repack in order to guarantee that
assumption to hold true.
The prune-packed command is now redundant since repack -d already calls
it.
Signed-off-by: Clemens Buchacher <drizzd@aon.at>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
t/t5550-http-fetch.sh | patch | blob | history |
diff --git a/t/t5550-http-fetch.sh b/t/t5550-http-fetch.sh
index 311a33ca84f693b9410bab9e282ad0ebcae87441..7926ab3c91e2b962760955640b8e8d45796d1e6f 100755 (executable)
--- a/t/t5550-http-fetch.sh
+++ b/t/t5550-http-fetch.sh
test_expect_success 'fetch packed objects' '
cp -R "$HTTPD_DOCUMENT_ROOT_PATH"/repo.git "$HTTPD_DOCUMENT_ROOT_PATH"/repo_pack.git &&
(cd "$HTTPD_DOCUMENT_ROOT_PATH"/repo_pack.git &&
- git --bare repack &&
- git --bare prune-packed
+ git --bare repack -a -d
) &&
git clone $HTTPD_URL/dumb/repo_pack.git
'