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>2023-12-19 01:10:11 +0300
committerJunio C Hamano <gitster@pobox.com>2023-12-19 01:10:11 +0300
commit71c746632aeeae0c4f87fa27db410c459c5c1658 (patch)
tree377ad4a69824d97936ae89fbe7a885bb444c259c /t
parentf1c537705b1e87441cd372a8aa63f56948036da0 (diff)
parent29a186917b58bf67e14667a7a7641f5dddcc8589 (diff)
Merge branch 'ps/ref-deletion-updates'
Simplify API implementation to delete references by eliminating duplication. * ps/ref-deletion-updates: refs: remove `delete_refs` callback from backends refs: deduplicate code to delete references refs/files: use transactions to delete references t5510: ensure that the packed-refs file needs locking
Diffstat (limited to 't')
-rwxr-xr-xt/t5510-fetch.sh1
1 files changed, 1 insertions, 0 deletions
diff --git a/t/t5510-fetch.sh b/t/t5510-fetch.sh
index dcadd56d3a..79592a3b0a 100755
--- a/t/t5510-fetch.sh
+++ b/t/t5510-fetch.sh
@@ -169,6 +169,7 @@ test_expect_success REFFILES 'fetch --prune fails to delete branches' '
git clone . prune-fail &&
cd prune-fail &&
git update-ref refs/remotes/origin/extrabranch main &&
+ git pack-refs --all &&
: this will prevent --prune from locking packed-refs for deleting refs, but adding loose refs still succeeds &&
>.git/packed-refs.new &&