]> git.ipfire.org Git - thirdparty/git.git/blobdiff - revision.h
revision traversal: prepare for commit log match.
[thirdparty/git.git] / revision.h
index 0c3b8d99059fb272b913a85c2873f5fef64acc00..60030e53f4214a3082b05108eee86f207fff1eaa 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;
 
@@ -55,7 +55,12 @@ struct rev_info {
 
        /* Format info */
        unsigned int    shown_one:1,
-                       abbrev_commit: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;
@@ -66,6 +71,10 @@ struct rev_info {
        const char      *add_signoff;
        const char      *extra_headers;
 
+       /* Filter by commit log message */
+       struct grep_opt *header_filter;
+       struct grep_opt *message_filter;
+
        /* special limits */
        int max_count;
        unsigned long max_age;
@@ -89,6 +98,8 @@ extern int rev_compare_tree(struct rev_info *, struct tree *t1, struct tree *t2)
 
 extern void init_revisions(struct rev_info *revs, const char *prefix);
 extern int setup_revisions(int argc, const char **argv, struct rev_info *revs, const char *def);
+extern int handle_revision_arg(const char *arg, struct rev_info *revs,int flags,int cant_be_filename);
+
 extern void prepare_revision_walk(struct rev_info *revs);
 extern struct commit *get_revision(struct rev_info *revs);