Make fetch-pack a builtin with an internal API
[git/dscho.git] / remote.h
blobf21b6a6da1f85eb0818ea55ad43368a1e7cf5e33
1 #ifndef REMOTE_H
2 #define REMOTE_H
4 struct remote {
5 const char *name;
7 const char **uri;
8 int uri_nr;
10 const char **push_refspec;
11 struct refspec *push;
12 int push_refspec_nr;
14 const char **fetch_refspec;
15 struct refspec *fetch;
16 int fetch_refspec_nr;
18 const char *receivepack;
19 const char *uploadpack;
22 struct remote *remote_get(const char *name);
24 typedef int each_remote_fn(struct remote *remote, void *priv);
25 int for_each_remote(each_remote_fn fn, void *priv);
27 int remote_has_uri(struct remote *remote, const char *uri);
29 struct refspec {
30 unsigned force : 1;
31 unsigned pattern : 1;
33 char *src;
34 char *dst;
37 struct ref *alloc_ref(unsigned namelen);
40 * Frees the entire list and peers of elements.
42 void free_refs(struct ref *ref);
44 int match_refs(struct ref *src, struct ref *dst, struct ref ***dst_tail,
45 int nr_refspec, char **refspec, int all);
48 * For the given remote, reads the refspec's src and sets the other fields.
50 int remote_find_tracking(struct remote *remote, struct refspec *refspec);
52 struct branch {
53 const char *name;
54 const char *refname;
56 const char *remote_name;
57 struct remote *remote;
59 const char **merge_name;
60 struct refspec **merge;
61 int merge_nr;
64 struct branch *branch_get(const char *name);
66 int branch_has_merge_config(struct branch *branch);
68 int branch_merges(struct branch *branch, const char *refname);
70 #endif