commit-graph: expire commit-graph files
commit8d84097f9655a954ea7e94ba08d93e5940ccb2ae
authorDerrick Stolee <dstolee@microsoft.com>
Tue, 18 Jun 2019 18:14:31 +0000 (18 11:14 -0700)
committerJunio C Hamano <gitster@pobox.com>
Thu, 20 Jun 2019 03:46:26 +0000 (19 20:46 -0700)
treea03d339c93622614583625570967a94365add6b7
parentc523035cbd8515d095dc15e9661fd896733bedbc
commit-graph: expire commit-graph files

As we merge commit-graph files in a commit-graph chain, we should clean
up the files that are no longer used.

This change introduces an 'expiry_window' value to the context, which is
always zero (for now). We then check the modified time of each
graph-{hash}.graph file in the $OBJDIR/info/commit-graphs folder and
unlink the files that are older than the expiry_window.

Since this is always zero, this immediately clears all unused graph
files. We will update the value to match a config setting in a future
change.

Signed-off-by: Derrick Stolee <dstolee@microsoft.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Documentation/technical/commit-graph.txt
commit-graph.c
t/t5324-split-commit-graph.sh