[PATCH 10/16] Only display refs in current namespace
Richard Maw
richard.maw at gmail.com
Sat Jul 16 00:59:56 CEST 2016
Signed-off-by: Richard Maw <richard.maw at gmail.com>
---
ui-refs.c | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/ui-refs.c b/ui-refs.c
index 75f2789..3e4edad 100644
--- a/ui-refs.c
+++ b/ui-refs.c
@@ -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);
--
2.9.0
More information about the CGit
mailing list