You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
#ifndef REFSPEC_H
|
|
|
|
#define REFSPEC_H
|
|
|
|
|
|
|
|
#define TAG_REFSPEC "refs/tags/*:refs/tags/*"
|
|
|
|
extern const struct refspec_item *tag_refspec;
|
|
|
|
|
|
|
|
struct refspec_item {
|
|
|
|
unsigned force : 1;
|
|
|
|
unsigned pattern : 1;
|
|
|
|
unsigned matching : 1;
|
|
|
|
unsigned exact_sha1 : 1;
|
|
|
|
|
|
|
|
char *src;
|
|
|
|
char *dst;
|
|
|
|
};
|
|
|
|
|
|
|
|
int valid_fetch_refspec(const char *refspec);
|
|
|
|
struct refspec_item *parse_fetch_refspec(int nr_refspec, const char **refspec);
|
|
|
|
struct refspec_item *parse_push_refspec(int nr_refspec, const char **refspec);
|
|
|
|
|
|
|
|
void free_refspec(int nr_refspec, struct refspec_item *refspec);
|
|
|
|
|
|
|
|
#endif /* REFSPEC_H */
|