]> git.ipfire.org Git - thirdparty/git.git/blame - remote.h
t7004: Add tests for the git tag -n option.
[thirdparty/git.git] / remote.h
CommitLineData
5751f490
DB
1#ifndef REMOTE_H
2#define REMOTE_H
3
4struct remote {
5 const char *name;
6
7 const char **uri;
8 int uri_nr;
9
10 const char **push_refspec;
6b62816c 11 struct refspec *push;
5751f490
DB
12 int push_refspec_nr;
13
5d46c9d4
DB
14 const char **fetch_refspec;
15 struct refspec *fetch;
16 int fetch_refspec_nr;
17
5751f490
DB
18 const char *receivepack;
19};
20
21struct remote *remote_get(const char *name);
22
5d46c9d4
DB
23int remote_has_uri(struct remote *remote, const char *uri);
24
6b62816c
DB
25struct refspec {
26 unsigned force : 1;
27 unsigned pattern : 1;
28
29 const char *src;
30 char *dst;
31};
32
dfd255dd
DB
33struct ref *alloc_ref(unsigned namelen);
34
35/*
36 * Frees the entire list and peers of elements.
37 */
38void free_refs(struct ref *ref);
39
6b62816c
DB
40int match_refs(struct ref *src, struct ref *dst, struct ref ***dst_tail,
41 int nr_refspec, char **refspec, int all);
42
5d46c9d4
DB
43/*
44 * For the given remote, reads the refspec's src and sets the other fields.
45 */
46int remote_find_tracking(struct remote *remote, struct refspec *refspec);
47
5751f490 48#endif