diff options
Diffstat (limited to 'revision.h')
| -rw-r--r-- | revision.h | 9 | 
1 files changed, 9 insertions, 0 deletions
diff --git a/revision.h b/revision.h index e7f1d211bf..88967d6a24 100644 --- a/revision.h +++ b/revision.h @@ -5,6 +5,7 @@  #include "grep.h"  #include "notes.h"  #include "commit.h" +#include "diff.h"  #define SEEN		(1u<<0)  #define UNINTERESTING   (1u<<1) @@ -60,6 +61,9 @@ struct rev_info {  	/* The end-points specified by the end user */  	struct rev_cmdline_info cmdline; +	/* excluding from --branches, --refs, etc. expansion */ +	struct string_list *ref_excludes; +  	/* Basic information */  	const char *prefix;  	const char *def; @@ -193,6 +197,11 @@ struct rev_info {  	struct saved_parents *saved_parents_slab;  }; +extern int ref_excluded(struct string_list *, const char *path); +void clear_ref_exclusion(struct string_list **); +void add_ref_exclusion(struct string_list **, const char *exclude); + +  #define REV_TREE_SAME		0  #define REV_TREE_NEW		1	/* Only new files */  #define REV_TREE_OLD		2	/* Only files removed */  | 
