]> git.ipfire.org Git - thirdparty/git.git/blame - fetch.h
GIT-VERSION-FILE: check ./version first.
[thirdparty/git.git] / fetch.h
CommitLineData
4250a5e5
DB
1#ifndef PULL_H
2#define PULL_H
3
a81efcba
JH
4/*
5 * Fetch object given SHA1 from the remote, and store it locally under
6 * GIT_OBJECT_DIRECTORY. Return 0 on success, -1 on failure. To be
7 * provided by the particular implementation.
8 */
4250a5e5
DB
9extern int fetch(unsigned char *sha1);
10
1e8be59d
DB
11/*
12 * Fetch the specified object and store it locally; fetch() will be
13 * called later to determine success. To be provided by the particular
14 * implementation.
15 */
16extern void prefetch(unsigned char *sha1);
17
a81efcba
JH
18/*
19 * Fetch ref (relative to $GIT_DIR/refs) from the remote, and store
20 * the 20-byte SHA1 in sha1. Return 0 on success, -1 on failure. To
21 * be provided by the particular implementation.
22 */
cd541a68
DB
23extern int fetch_ref(char *ref, unsigned char *sha1);
24
a81efcba 25/* Set to fetch the target tree. */
4250a5e5
DB
26extern int get_tree;
27
a81efcba 28/* Set to fetch the commit history. */
4250a5e5
DB
29extern int get_history;
30
a81efcba 31/* Set to fetch the trees in the commit history. */
4250a5e5
DB
32extern int get_all;
33
e78d9772
JH
34/* Set to be verbose */
35extern int get_verbosely;
36
820eca68
DB
37/* Set to check on all reachable objects. */
38extern int get_recover;
39
e78d9772
JH
40/* Report what we got under get_verbosely */
41extern void pull_say(const char *, const char *);
42
8e87ca66
PB
43/* Load pull targets from stdin */
44extern int pull_targets_stdin(char ***target, const char ***write_ref);
45
46/* Free up loaded targets */
47extern void pull_targets_free(int targets, char **target, const char **write_ref);
48
c6b69bdb
PB
49/* If write_ref is set, the ref filename to write the target value to. */
50/* If write_ref_log_details is set, additional text will appear in the ref log. */
4211e4d1 51extern int pull(int targets, char **target, const char **write_ref,
c6b69bdb 52 const char *write_ref_log_details);
4250a5e5
DB
53
54#endif /* PULL_H */