mirror of
https://github.com/git/git.git
synced 2024-11-01 06:47:52 +01:00
be042aff24
With the usual "git" transport, a large-ish transfer with "git fetch" and "git pull" give progress eye-candy to avoid boring users. However, not when they are reading from a bundle. I.e. $ git pull ../git-bundle.bndl master This teaches bundle.c:unbundle() to give "-v" option to index-pack and tell it to give progress bar when transport decides it is necessary. The operation in the other direction, "git bundle create", could also learn to honor --quiet but that is a separate issue. Signed-off-by: Junio C Hamano <gitster@pobox.com>
26 lines
663 B
C
26 lines
663 B
C
#ifndef BUNDLE_H
|
|
#define BUNDLE_H
|
|
|
|
struct ref_list {
|
|
unsigned int nr, alloc;
|
|
struct ref_list_entry {
|
|
unsigned char sha1[20];
|
|
char *name;
|
|
} *list;
|
|
};
|
|
|
|
struct bundle_header {
|
|
struct ref_list prerequisites;
|
|
struct ref_list references;
|
|
};
|
|
|
|
int read_bundle_header(const char *path, struct bundle_header *header);
|
|
int create_bundle(struct bundle_header *header, const char *path,
|
|
int argc, const char **argv);
|
|
int verify_bundle(struct bundle_header *header, int verbose);
|
|
#define BUNDLE_VERBOSE 1
|
|
int unbundle(struct bundle_header *header, int bundle_fd, int flags);
|
|
int list_bundle_refs(struct bundle_header *header,
|
|
int argc, const char **argv);
|
|
|
|
#endif
|