connect: handle putty/plink also in GIT_SSH_COMMAND
[gitweb.git] / ref-filter.h
index a5cfa5e677dbdf17156c6287f57fa5694b9d5120..fc55fa3574620bfdc76b2997afc56909528e2275 100644 (file)
@@ -29,6 +29,7 @@ struct ref_sorting {
        struct ref_sorting *next;
        int atom; /* index into used_atom array (internal) */
        unsigned reverse : 1,
+               ignore_case : 1,
                version : 1;
 };
 
@@ -45,6 +46,7 @@ struct ref_array_item {
 struct ref_array {
        int nr, alloc;
        struct ref_array_item **items;
+       struct rev_info *revs;
 };
 
 struct ref_filter {
@@ -60,9 +62,13 @@ struct ref_filter {
        struct commit *merge_commit;
 
        unsigned int with_commit_tag_algo : 1,
-               match_as_path : 1;
+               match_as_path : 1,
+               ignore_case : 1,
+               detached : 1;
        unsigned int kind,
                lines;
+       int abbrev,
+               verbose;
 };
 
 struct ref_filter_cbdata {