git@vger.kernel.org mailing list mirror (one of many)
 help / color / mirror / code / Atom feed
blob 638a7ba9cc17090a285daaabbb6ada245910164c 943 bytes (raw)
name: archive.h 	 # note: path name is non-authoritative(*)

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
 
#ifndef ARCHIVE_H
#define ARCHIVE_H

struct archiver_args {
	const char *base;
	size_t baselen;
	struct tree *tree;
	const unsigned char *commit_sha1;
	const struct commit *commit;
	time_t time;
	const char **pathspec;
	unsigned int verbose : 1;
	unsigned int worktree_attributes : 1;
	int compression_level;
	gzFile gzfile;
};

typedef int (*write_archive_fn_t)(struct archiver_args *);

typedef int (*write_archive_entry_fn_t)(struct archiver_args *args, const unsigned char *sha1, const char *path, size_t pathlen, unsigned int mode, void *buffer, unsigned long size);

/*
 * Archive-format specific backends.
 */
extern int write_tar_archive(struct archiver_args *);
extern int write_zip_archive(struct archiver_args *);

extern int write_archive_entries(struct archiver_args *args, write_archive_entry_fn_t write_entry);
extern int write_archive(int argc, const char **argv, const char *prefix, int setup_prefix);

#endif	/* ARCHIVE_H */

debug log:

solving 638a7ba ...
found 638a7ba in http://public-inbox.org/git/4AA97B61.6030301@lsrfire.ath.cx/
found 038ac35 in https://80x24.org/mirrors/git.git
preparing index
index prepared:
100644 038ac353d40567029403e3e7a2933af73a130720	archive.h

applying [1/1] http://public-inbox.org/git/4AA97B61.6030301@lsrfire.ath.cx/
diff --git a/archive.h b/archive.h
index 038ac35..638a7ba 100644

Checking patch archive.h...
Applied patch archive.h cleanly.

index at:
100644 638a7ba9cc17090a285daaabbb6ada245910164c	archive.h

(*) Git path names are given by the tree(s) the blob belongs to.
    Blobs themselves have no identifier aside from the hash of its contents.^

Code repositories for project(s) associated with this public inbox

	https://80x24.org/mirrors/git.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).