mirror of
https://git.zx2c4.com/cgit
synced 2025-07-30 23:55:28 +02:00
git: update to v2.46.0
Update to git version v2.46.0, this requires changes for these upstream commits: * e7da9385708accf518a80a1e17969020fb361048 global: introduce `USE_THE_REPOSITORY_VARIABLE` macro * 9da95bda74cf10e1475384a71fd20914c3b99784 hash: require hash algorithm in `oidread()` and `oidclr()` * 30aaff437fddd889ba429b50b96ea4c151c502c5 refs: pass repo when peeling objects * c8f815c2083c4b340d4148a15d45c55f2fcc7d3f refs: remove functions without ref store Signed-off-by: Christian Hesse <mail@eworm.de>
This commit is contained in:
parent
fb87de795b
commit
09d24d7cd0
20 changed files with 58 additions and 13 deletions
11
ui-refs.c
11
ui-refs.c
|
@ -6,6 +6,8 @@
|
|||
* (see COPYING for full license text)
|
||||
*/
|
||||
|
||||
#define USE_THE_REPOSITORY_VARIABLE
|
||||
|
||||
#include "cgit.h"
|
||||
#include "ui-refs.h"
|
||||
#include "html.h"
|
||||
|
@ -155,9 +157,11 @@ void cgit_print_branches(int maxcount)
|
|||
|
||||
list.refs = NULL;
|
||||
list.alloc = list.count = 0;
|
||||
for_each_branch_ref(cgit_refs_cb, &list);
|
||||
refs_for_each_branch_ref(get_main_ref_store(the_repository),
|
||||
cgit_refs_cb, &list);
|
||||
if (ctx.repo->enable_remote_branches)
|
||||
for_each_remote_ref(cgit_refs_cb, &list);
|
||||
refs_for_each_remote_ref(get_main_ref_store(the_repository),
|
||||
cgit_refs_cb, &list);
|
||||
|
||||
if (maxcount == 0 || maxcount > list.count)
|
||||
maxcount = list.count;
|
||||
|
@ -182,7 +186,8 @@ void cgit_print_tags(int maxcount)
|
|||
|
||||
list.refs = NULL;
|
||||
list.alloc = list.count = 0;
|
||||
for_each_tag_ref(cgit_refs_cb, &list);
|
||||
refs_for_each_tag_ref(get_main_ref_store(the_repository),
|
||||
cgit_refs_cb, &list);
|
||||
if (list.count == 0)
|
||||
return;
|
||||
qsort(list.refs, list.count, sizeof(*list.refs), cmp_tag_age);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue