]> rtime.felk.cvut.cz Git - git.git/blobdiff - remote.c
Merge branch 'db/clone-in-c'
[git.git] / remote.c
index 9e4f2b84d90cb97a6cb19779325f9ea443a76e43..75a12c0762160dd877d0b6f63f8ec47228b7fee4 100644 (file)
--- a/remote.c
+++ b/remote.c
@@ -2,6 +2,16 @@
 #include "remote.h"
 #include "refs.h"
 
+static struct refspec s_tag_refspec = {
+       0,
+       1,
+       0,
+       "refs/tags/",
+       "refs/tags/"
+};
+
+const struct refspec *tag_refspec = &s_tag_refspec;
+
 struct counted_string {
        size_t len;
        const char *s;