2007-09-11 05:03:15 +02:00
|
|
|
#ifndef BUNDLE_H
|
|
|
|
#define BUNDLE_H
|
|
|
|
|
2019-11-10 21:41:25 +01:00
|
|
|
#include "argv-array.h"
|
2017-05-01 04:28:59 +02:00
|
|
|
#include "cache.h"
|
|
|
|
|
2007-09-11 05:03:15 +02:00
|
|
|
struct ref_list {
|
|
|
|
unsigned int nr, alloc;
|
|
|
|
struct ref_list_entry {
|
2017-05-01 04:28:59 +02:00
|
|
|
struct object_id oid;
|
2007-09-11 05:03:15 +02:00
|
|
|
char *name;
|
|
|
|
} *list;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct bundle_header {
|
|
|
|
struct ref_list prerequisites;
|
|
|
|
struct ref_list references;
|
|
|
|
};
|
|
|
|
|
2011-10-14 00:19:31 +02:00
|
|
|
int is_bundle(const char *path, int quiet);
|
2007-09-11 05:03:15 +02:00
|
|
|
int read_bundle_header(const char *path, struct bundle_header *header);
|
2019-01-24 14:11:51 +01:00
|
|
|
int create_bundle(struct repository *r, const char *path,
|
2019-11-10 21:41:25 +01:00
|
|
|
int argc, const char **argv, struct argv_array *pack_options);
|
2018-11-10 06:49:01 +01:00
|
|
|
int verify_bundle(struct repository *r, struct bundle_header *header, int verbose);
|
2011-09-19 01:52:32 +02:00
|
|
|
#define BUNDLE_VERBOSE 1
|
2018-11-10 06:49:01 +01:00
|
|
|
int unbundle(struct repository *r, struct bundle_header *header,
|
|
|
|
int bundle_fd, int flags);
|
2007-09-11 05:03:15 +02:00
|
|
|
int list_bundle_refs(struct bundle_header *header,
|
|
|
|
int argc, const char **argv);
|
|
|
|
|
|
|
|
#endif
|