summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/refspec.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/refspec.h b/src/refspec.h
index 58f3fe472..7c389719b 100644
--- a/src/refspec.h
+++ b/src/refspec.h
@@ -10,9 +10,12 @@
#include "git2/refspec.h"
struct git_refspec {
- int force;
+ struct git_refspec *next;
char *src;
char *dst;
+ unsigned int force :1,
+ pattern :1,
+ matching :1;
};
int git_refspec_parse(struct git_refspec *refspec, const char *str);