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

Function clear_commit_marks

commit.c:836–843  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

834}
835
836void clear_commit_marks(struct commit *commit, unsigned int mark)
837{
838 struct commit_list *list = NULL;
839
840 clear_commit_marks_1(&list, commit, mark);
841 while (list)
842 clear_commit_marks_1(&list, pop_commit(&list), mark);
843}
844
845struct commit *pop_commit(struct commit_list **stack)
846{

Callers 15

reach_filterFunction · 0.85
remove_redundant_no_genFunction · 0.85
get_merge_bases_many_0Function · 0.85
repo_in_merge_bases_manyFunction · 0.85
can_all_from_reachFunction · 0.85
reflog_expiry_cleanupFunction · 0.85
shortlogFunction · 0.85
is_range_diff_rangeFunction · 0.85
stat_branch_pairFunction · 0.85
get_oid_onelineFunction · 0.85

Calls 2

clear_commit_marks_1Function · 0.85
pop_commitFunction · 0.85

Tested by

no test coverage detected