2017-06-23 09:01:37 +02:00
|
|
|
#ifndef REFS_PACKED_BACKEND_H
|
|
|
|
#define REFS_PACKED_BACKEND_H
|
|
|
|
|
2017-06-23 09:01:38 +02:00
|
|
|
struct ref_store *packed_ref_store_create(const char *path,
|
|
|
|
unsigned int store_flags);
|
2017-06-23 09:01:37 +02:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Lock the packed-refs file for writing. Flags is passed to
|
|
|
|
* hold_lock_file_for_update(). Return 0 on success. On errors, set
|
|
|
|
* errno appropriately and return a nonzero value.
|
|
|
|
*/
|
2017-06-23 09:01:38 +02:00
|
|
|
int lock_packed_refs(struct ref_store *ref_store, int flags);
|
2017-06-23 09:01:37 +02:00
|
|
|
|
2017-06-23 09:01:38 +02:00
|
|
|
void add_packed_ref(struct ref_store *ref_store,
|
2017-06-23 09:01:37 +02:00
|
|
|
const char *refname, const struct object_id *oid);
|
|
|
|
|
2017-06-23 09:01:39 +02:00
|
|
|
int commit_packed_refs(struct ref_store *ref_store, struct strbuf *err);
|
2017-06-23 09:01:37 +02:00
|
|
|
|
2017-06-23 09:01:38 +02:00
|
|
|
int repack_without_refs(struct ref_store *ref_store,
|
2017-06-23 09:01:37 +02:00
|
|
|
struct string_list *refnames, struct strbuf *err);
|
|
|
|
|
|
|
|
#endif /* REFS_PACKED_BACKEND_H */
|