Merge branch 'rs/strbuf-detach'
[gitweb.git] / promisor-remote.h
index dddd4048e0cc015df353b1b595c8904215f187fe..8200dfc9408e294c28f6dc5e1e6b70790633d31d 100644 (file)
@@ -5,10 +5,13 @@ struct object_id;
 
 /*
  * Promisor remote linked list
- * Its information come from remote.XXX config entries.
+ *
+ * Information in its fields come from remote.XXX config entries or
+ * from extensions.partialclone or core.partialclonefilter.
  */
 struct promisor_remote {
        struct promisor_remote *next;
+       const char *partial_clone_filter;
        const char name[FLEX_ARRAY];
 };
 
@@ -19,4 +22,10 @@ extern int promisor_remote_get_direct(struct repository *repo,
                                      const struct object_id *oids,
                                      int oid_nr);
 
+/*
+ * This should be used only once from setup.c to set the value we got
+ * from the extensions.partialclone config option.
+ */
+extern void set_repository_format_partial_clone(char *partial_clone);
+
 #endif /* PROMISOR_REMOTE_H */