]> git.ipfire.org Git - thirdparty/git.git/blobdiff - revision.h
Built-in cherry
[thirdparty/git.git] / revision.h
index c1f71afe6fa71075b64df03c1e9616f50325d29e..3adab9590a14e25c2659a1933db4af456c263a5b 100644 (file)
@@ -38,7 +38,7 @@ struct rev_info {
                        blob_objects:1,
                        edge_hint:1,
                        limited:1,
-                       unpacked:1,
+                       unpacked:1, /* see also ignore_packed below */
                        boundary:1,
                        parents:1;
 
@@ -57,6 +57,10 @@ struct rev_info {
        unsigned int    shown_one:1,
                        abbrev_commit:1,
                        relative_date:1;
+
+       const char **ignore_packed; /* pretend objects in these are unpacked */
+       int num_ignore_packed;
+
        unsigned int    abbrev;
        enum cmit_fmt   commit_format;
        struct log_info *loginfo;
@@ -67,6 +71,9 @@ struct rev_info {
        const char      *add_signoff;
        const char      *extra_headers;
 
+       /* Filter by commit log message */
+       struct grep_opt *grep_filter;
+
        /* special limits */
        int max_count;
        unsigned long max_age;