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
|
|
|
/* 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 *);
|
|
|
|
|
2006-07-27 23:56:19 +02:00
|
|
|
/* Load pull targets from stdin */
|
|
|
|
extern int pull_targets_stdin(char ***target, const char ***write_ref);
|
|
|
|
|
|
|
|
/* Free up loaded targets */
|
|
|
|
extern void pull_targets_free(int targets, char **target, const char **write_ref);
|
|
|
|
|
2006-07-27 23:56:14 +02:00
|
|
|
/* If write_ref is set, the ref filename to write the target value to. */
|
|
|
|
/* If write_ref_log_details is set, additional text will appear in the ref log. */
|
2006-07-27 23:56:17 +02:00
|
|
|
extern int pull(int targets, char **target, const char **write_ref,
|
2006-07-27 23:56:14 +02:00
|
|
|
const char *write_ref_log_details);
|
2005-05-01 01:53:56 +02:00
|
|
|
|
|
|
|
#endif /* PULL_H */
|