1#ifndef PULL_H 2#define PULL_H 3 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 */ 9externintfetch(unsigned char*sha1); 10 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 */ 16externvoidprefetch(unsigned char*sha1); 17 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 */ 23externintfetch_ref(char*ref,unsigned char*sha1); 24 25/* If set, the ref filename to write the target value to. */ 26externconst char*write_ref; 27 28/* If set additional text will appear in the ref log. */ 29externconst char*write_ref_log_details; 30 31/* Set to fetch the target tree. */ 32externint get_tree; 33 34/* Set to fetch the commit history. */ 35externint get_history; 36 37/* Set to fetch the trees in the commit history. */ 38externint get_all; 39 40/* Set to be verbose */ 41externint get_verbosely; 42 43/* Set to check on all reachable objects. */ 44externint get_recover; 45 46/* Report what we got under get_verbosely */ 47externvoidpull_say(const char*,const char*); 48 49externintpull(char*target); 50 51#endif/* PULL_H */