log: introduce init_log_defaults()
[gitweb.git] / ref-filter.h
index ab76b22de6c32eca6e07abfe6aa70cf6f8c39ab8..14d435e2ccf0204312d1f72555f1c2c36fabd215 100644 (file)
@@ -28,7 +28,8 @@ struct atom_value;
 struct ref_sorting {
        struct ref_sorting *next;
        int atom; /* index into used_atom array (internal) */
-       unsigned reverse : 1;
+       unsigned reverse : 1,
+               version : 1;
 };
 
 struct ref_array_item {
@@ -44,6 +45,7 @@ struct ref_array_item {
 struct ref_array {
        int nr, alloc;
        struct ref_array_item **items;
+       struct rev_info *revs;
 };
 
 struct ref_filter {
@@ -58,9 +60,13 @@ struct ref_filter {
        } merge;
        struct commit *merge_commit;
 
-       unsigned int with_commit_tag_algo : 1;
+       unsigned int with_commit_tag_algo : 1,
+               match_as_path : 1,
+               detached : 1;
        unsigned int kind,
                lines;
+       int abbrev,
+               verbose;
 };
 
 struct ref_filter_cbdata {