diff options
| author | John Cai <johncai86@gmail.com> | 2023-05-12 21:34:41 +0000 |
|---|---|---|
| committer | Junio C Hamano <gitster@pobox.com> | 2023-05-12 14:54:14 -0700 |
| commit | 826ae79fca263bc2b70c54fddacb1603c5ebb9c6 (patch) | |
| tree | f0a65557626ded284ed05b538dc0f886c067eb82 /refs/packed-backend.c | |
| parent | 283174b214c4c5416772dcacbc6389dd192969a0 (diff) | |
| download | git-826ae79fca263bc2b70c54fddacb1603c5ebb9c6.tar.xz | |
pack-refs: teach --exclude option to exclude refs from being packed
At GitLab, we have a system that creates ephemeral internal refs that
don't live long before getting deleted. Having an option to exclude
certain refs from a packed-refs file allows these internal references to
be deleted much more efficiently.
Add an --exclude option to the pack-refs builtin, and use the ref
exclusions API to exclude certain refs from being packed into the final
packed-refs file
Signed-off-by: John Cai <johncai86@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'refs/packed-backend.c')
| -rw-r--r-- | refs/packed-backend.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/refs/packed-backend.c b/refs/packed-backend.c index 34c0c4e20f..87ba5f520e 100644 --- a/refs/packed-backend.c +++ b/refs/packed-backend.c @@ -1576,7 +1576,7 @@ static int packed_delete_refs(struct ref_store *ref_store, const char *msg, } static int packed_pack_refs(struct ref_store *ref_store UNUSED, - unsigned int flags UNUSED) + struct pack_refs_opts *pack_opts UNUSED) { /* * Packed refs are already packed. It might be that loose refs |
