From aa57b871dad3cca07abead9a8d1fefceffe7578d Mon Sep 17 00:00:00 2001 From: Jeff Hostetler Date: Fri, 8 Dec 2017 15:58:50 +0000 Subject: fetch: inherit filter-spec from partial clone Teach (partial) fetch to inherit the filter-spec used by the partial clone. Extend --no-filter to override this inheritance. Signed-off-by: Jeff Hostetler Signed-off-by: Junio C Hamano --- list-objects-filter-options.h | 12 ++++++++++++ 1 file changed, 12 insertions(+) (limited to 'list-objects-filter-options.h') diff --git a/list-objects-filter-options.h b/list-objects-filter-options.h index 11435392c2..0000a61f82 100644 --- a/list-objects-filter-options.h +++ b/list-objects-filter-options.h @@ -30,6 +30,11 @@ struct list_objects_filter_options { */ enum list_objects_filter_choice choice; + /* + * Choice is LOFC_DISABLED because "--no-filter" was requested. + */ + unsigned int no_filter : 1; + /* * Parsed values (fields) from within the filter-spec. These are * choice-specific; not all values will be defined for any given @@ -58,6 +63,13 @@ int opt_parse_list_objects_filter(const struct option *opt, void list_objects_filter_release( struct list_objects_filter_options *filter_options); +static inline void list_objects_filter_set_no_filter( + struct list_objects_filter_options *filter_options) +{ + list_objects_filter_release(filter_options); + filter_options->no_filter = 1; +} + void partial_clone_register( const char *remote, const struct list_objects_filter_options *filter_options); -- cgit v1.2.3