]> git.ipfire.org Git - thirdparty/git.git/blobdiff - commit-reach.h
Merge branch 'master' of github.com:linusboyle/git
[thirdparty/git.git] / commit-reach.h
index 122a23a24d8a40d213c7a1fb167f3f9c2b3c73d6..fb8082a2ece94a94cf2f9a55ba95950caa41a914 100644 (file)
@@ -1,12 +1,13 @@
 #ifndef COMMIT_REACH_H
 #define COMMIT_REACH_H
 
+#include "commit.h"
 #include "commit-slab.h"
 
-struct commit;
 struct commit_list;
-struct contains_cache;
 struct ref_filter;
+struct object_id;
+struct object_array;
 
 struct commit_list *get_merge_bases_many(struct commit *one,
                                         int n,
@@ -74,4 +75,17 @@ int can_all_from_reach_with_flag(struct object_array *from,
 int can_all_from_reach(struct commit_list *from, struct commit_list *to,
                       int commit_date_cutoff);
 
+
+/*
+ * Return a list of commits containing the commits in the 'to' array
+ * that are reachable from at least one commit in the 'from' array.
+ * Also add the given 'flag' to each of the commits in the returned list.
+ *
+ * This method uses the PARENT1 and PARENT2 flags during its operation,
+ * so be sure these flags are not set before calling the method.
+ */
+struct commit_list *get_reachable_subset(struct commit **from, int nr_from,
+                                        struct commit **to, int nr_to,
+                                        unsigned int reachable_flag);
+
 #endif