diff options
author | Richard Maw <richard.maw@gmail.com> | 2016-06-26 01:04:20 +0300 |
---|---|---|
committer | Richard Maw <richard.maw@gmail.com> | 2016-07-13 22:09:37 +0300 |
commit | 44efabfc5e36a92f060bcdb470fcf4a1814579f9 (patch) | |
tree | 0d06223cb70e4c65bfc08fa0a5f9689260bf503c | |
parent | f1984bb2367c14ca86a6afbdd87fa6280cd1162b (diff) |
Only display refs in current namespace
Signed-off-by: Richard Maw <richard.maw@gmail.com>
-rw-r--r-- | ui-refs.c | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -183,9 +183,9 @@ void cgit_print_branches(int maxcount) list.refs = NULL; list.alloc = list.count = 0; - for_each_branch_ref(cgit_refs_cb, &list); + cgit_for_each_namespaced_ref_in("refs/heads/", cgit_refs_cb, &list); if (ctx.repo->enable_remote_branches) - for_each_remote_ref(cgit_refs_cb, &list); + cgit_for_each_namespaced_ref_in("refs/remotes/", cgit_refs_cb, &list); if (maxcount == 0 || maxcount > list.count) maxcount = list.count; @@ -210,7 +210,7 @@ void cgit_print_tags(int maxcount) list.refs = NULL; list.alloc = list.count = 0; - for_each_tag_ref(cgit_refs_cb, &list); + cgit_for_each_namespaced_ref_in("refs/tags/", cgit_refs_cb, &list); if (list.count == 0) return; qsort(list.refs, list.count, sizeof(*list.refs), cmp_tag_age); |