Re: [PATCH v4 0/3] Use default values from settings instead of config
From: Glen Choo <hidden>
Date: 2021-10-14 22:21:22
Derrick Stolee [off-list ref] writes:
quoted
quoted
The commit-graph should be disabled if replace-objects are enabled. If there is a bug being introduced here it is because the commit-graph is being checked during fsck even though it would never be read when the replace-objects exist. Thanks, -StoleeThanks, isn't the obvious fix for this to extend your d6538246d3d (commit-graph: not compatible with replace objects, 2018-08-20) to do "read_replace_refs = 0;" in graph_verify()? That works for me on this case.Ignoring the replace refs while verifying will allow you to verify the on-disk commit-graph file without issue.
It seems like we've converged on doing read_replace_refs = 0 \o/ If we are going to do this twice in graph_verify() and graph_write(), is there any reason why I shouldn't just do "read_replace_refs = 0" once in cmd_commit_graph()? IOW any time we do anything with commit-graphs, we should just ignore replace refs because they're incompatible.