Move remote parsing into a library file out of builtin-push.
[git/jnareb-git/bp-gitweb.git] / remote.h
blob73747a8054bfa1fa70838db95ed0fbac1b216fea
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 int push_refspec_nr;
13 const char *receivepack;
16 struct remote *remote_get(const char *name);
18 #endif