2005-05-01 01:53:56 +02:00
|
|
|
#ifndef PULL_H
|
|
|
|
#define PULL_H
|
|
|
|
|
2005-06-25 11:26:29 +02:00
|
|
|
/*
|
|
|
|
* Fetch object given SHA1 from the remote, and store it locally under
|
|
|
|
* GIT_OBJECT_DIRECTORY. Return 0 on success, -1 on failure. To be
|
|
|
|
* provided by the particular implementation.
|
|
|
|
*/
|
2005-05-01 01:53:56 +02:00
|
|
|
extern int fetch(unsigned char *sha1);
|
|
|
|
|
2005-08-03 01:46:10 +02:00
|
|
|
/*
|
|
|
|
* Fetch the specified object and store it locally; fetch() will be
|
|
|
|
* called later to determine success. To be provided by the particular
|
|
|
|
* implementation.
|
|
|
|
*/
|
|
|
|
extern void prefetch(unsigned char *sha1);
|
|
|
|
|
2005-06-25 11:26:29 +02:00
|
|
|
/*
|
|
|
|
* Fetch ref (relative to $GIT_DIR/refs) from the remote, and store
|
|
|
|
* the 20-byte SHA1 in sha1. Return 0 on success, -1 on failure. To
|
|
|
|
* be provided by the particular implementation.
|
|
|
|
*/
|
2005-06-06 22:38:26 +02:00
|
|
|
extern int fetch_ref(char *ref, unsigned char *sha1);
|
|
|
|
|
2005-06-25 11:26:29 +02:00
|
|
|
/* If set, the ref filename to write the target value to. */
|
2005-06-06 22:38:26 +02:00
|
|
|
extern const char *write_ref;
|
|
|
|
|
2005-06-25 11:26:29 +02:00
|
|
|
/* If set, the hash that the current value of write_ref must be. */
|
2005-06-06 22:38:26 +02:00
|
|
|
extern const unsigned char *current_ref;
|
|
|
|
|
2005-06-25 11:26:29 +02:00
|
|
|
/* Set to fetch the target tree. */
|
2005-05-01 01:53:56 +02:00
|
|
|
extern int get_tree;
|
|
|
|
|
2005-06-25 11:26:29 +02:00
|
|
|
/* Set to fetch the commit history. */
|
2005-05-01 01:53:56 +02:00
|
|
|
extern int get_history;
|
|
|
|
|
2005-06-25 11:26:29 +02:00
|
|
|
/* Set to fetch the trees in the commit history. */
|
2005-05-01 01:53:56 +02:00
|
|
|
extern int get_all;
|
|
|
|
|
2005-05-06 10:37:21 +02:00
|
|
|
/* Set to be verbose */
|
|
|
|
extern int get_verbosely;
|
|
|
|
|
2005-09-27 03:38:08 +02:00
|
|
|
/* Set to check on all reachable objects. */
|
|
|
|
extern int get_recover;
|
|
|
|
|
2005-05-06 10:37:21 +02:00
|
|
|
/* Report what we got under get_verbosely */
|
|
|
|
extern void pull_say(const char *, const char *);
|
|
|
|
|
2005-05-01 01:53:56 +02:00
|
|
|
extern int pull(char *target);
|
|
|
|
|
|
|
|
#endif /* PULL_H */
|