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

Function corrected_commit_dates_enabled

commit-graph.c:796–805  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

794}
795
796int corrected_commit_dates_enabled(struct repository *r)
797{
798 struct commit_graph *g;
799
800 g = prepare_commit_graph(r);
801 if (!g || !g->num_commits)
802 return 0;
803
804 return g->read_generation_data;
805}
806
807struct bloom_filter_settings *get_bloom_filter_settings(struct repository *r)
808{

Callers 1

paint_down_to_commonFunction · 0.85

Calls 1

prepare_commit_graphFunction · 0.85

Tested by

no test coverage detected