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

Function commit_stack_grow

commit.c:2024–2027  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2022}
2023
2024void commit_stack_grow(struct commit_stack *stack, size_t extra)
2025{
2026 ALLOC_GROW(stack->items, st_add(stack->nr, extra), stack->alloc);
2027}
2028
2029void commit_stack_push(struct commit_stack *stack, struct commit *commit)
2030{

Callers 3

merge_commit_graphFunction · 0.85
commit_stack_pushFunction · 0.85

Calls 1

st_addFunction · 0.85

Tested by

no test coverage detected