2007-09-11 03:03:15 +00:00
|
|
|
#ifndef BUNDLE_H
|
|
|
|
#define BUNDLE_H
|
|
|
|
|
2020-07-28 20:23:39 +00:00
|
|
|
#include "strvec.h"
|
2017-05-01 02:28:59 +00:00
|
|
|
#include "cache.h"
|
|
|
|
|
2007-09-11 03:03:15 +00:00
|
|
|
struct ref_list {
|
|
|
|
unsigned int nr, alloc;
|
|
|
|
struct ref_list_entry {
|
2017-05-01 02:28:59 +00:00
|
|
|
struct object_id oid;
|
2007-09-11 03:03:15 +00:00
|
|
|
char *name;
|
|
|
|
} *list;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct bundle_header {
|
2020-07-29 23:14:20 +00:00
|
|
|
unsigned version;
|
2007-09-11 03:03:15 +00:00
|
|
|
struct ref_list prerequisites;
|
|
|
|
struct ref_list references;
|
2020-06-19 17:56:00 +00:00
|
|
|
const struct git_hash_algo *hash_algo;
|
2007-09-11 03:03:15 +00:00
|
|
|
};
|
|
|
|
|
2011-10-13 22:19:31 +00:00
|
|
|
int is_bundle(const char *path, int quiet);
|
2007-09-11 03:03:15 +00:00
|
|
|
int read_bundle_header(const char *path, struct bundle_header *header);
|
2019-01-24 13:11:51 +00:00
|
|
|
int create_bundle(struct repository *r, const char *path,
|
2020-08-12 01:04:11 +00:00
|
|
|
int argc, const char **argv, struct strvec *pack_options,
|
2020-07-29 23:14:20 +00:00
|
|
|
int version);
|
2018-11-10 05:49:01 +00:00
|
|
|
int verify_bundle(struct repository *r, struct bundle_header *header, int verbose);
|
2011-09-18 23:52:32 +00:00
|
|
|
#define BUNDLE_VERBOSE 1
|
2018-11-10 05:49:01 +00:00
|
|
|
int unbundle(struct repository *r, struct bundle_header *header,
|
|
|
|
int bundle_fd, int flags);
|
2007-09-11 03:03:15 +00:00
|
|
|
int list_bundle_refs(struct bundle_header *header,
|
|
|
|
int argc, const char **argv);
|
|
|
|
|
|
|
|
#endif
|