]> git.ipfire.org Git - thirdparty/git.git/blob - refs/packed-backend.h
packed_ref_store: make class into a subclass of `ref_store`
[thirdparty/git.git] / refs / packed-backend.h
1 #ifndef REFS_PACKED_BACKEND_H
2 #define REFS_PACKED_BACKEND_H
3
4 struct ref_store *packed_ref_store_create(const char *path,
5 unsigned int store_flags);
6
7 /*
8 * Lock the packed-refs file for writing. Flags is passed to
9 * hold_lock_file_for_update(). Return 0 on success. On errors, set
10 * errno appropriately and return a nonzero value.
11 */
12 int lock_packed_refs(struct ref_store *ref_store, int flags);
13
14 void add_packed_ref(struct ref_store *ref_store,
15 const char *refname, const struct object_id *oid);
16
17 int commit_packed_refs(struct ref_store *ref_store);
18
19 int repack_without_refs(struct ref_store *ref_store,
20 struct string_list *refnames, struct strbuf *err);
21
22 #endif /* REFS_PACKED_BACKEND_H */