MCPcopy Index your code
hub / github.com/git/git / free_refs

Function free_refs

remote.c:1031–1039  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1029}
1030
1031void free_refs(struct ref *ref)
1032{
1033 struct ref *next;
1034 while (ref) {
1035 next = ref->next;
1036 free_one_ref(ref);
1037 ref = next;
1038 }
1039}
1040
1041int count_refspec_match(const char *pattern,
1042 struct ref *refs,

Callers 15

filter_refsFunction · 0.85
fetch_packFunction · 0.85
get_bundle_uriFunction · 0.85
fetch_refs_via_packFunction · 0.85
transport_pushFunction · 0.85
transport_disconnectFunction · 0.85
cmd_mainFunction · 0.85
free_discoveryFunction · 0.85
parse_fetchFunction · 0.85
fetch_refsFunction · 0.85
cmd_fetch_packFunction · 0.85
set_refspecsFunction · 0.85

Calls 1

free_one_refFunction · 0.85

Tested by

no test coverage detected