struct ref_array {
        int nr, alloc;
        struct ref_array_item **items;
+       struct rev_info *revs;
 };
 
 struct ref_filter {
        struct commit *merge_commit;
 
        unsigned int with_commit_tag_algo : 1,
-               match_as_path : 1;
+               match_as_path : 1,
+               detached : 1;
        unsigned int kind,
                lines;
+       int abbrev,
+               verbose;
 };
 
 struct ref_filter_cbdata {