]> git.ipfire.org Git - thirdparty/git.git/commit
gc: fix handling of crontab magic markers
authorMartin Ågren <martin.agren@gmail.com>
Mon, 21 Dec 2020 21:26:32 +0000 (22:26 +0100)
committerJunio C Hamano <gitster@pobox.com>
Mon, 21 Dec 2020 22:33:08 +0000 (14:33 -0800)
commit66dc0a3625e9f3ea8e99e5ae4f4d3dded1d5c8c6
treedabc3187398ce3c802206728905c61d589028f15
parent83fcadd636415e9fe6c5d397df583fe74af58720
gc: fix handling of crontab magic markers

On `git maintenance start`, we add a few entries to the user's cron
table. We wrap our entries using two magic markers, "# BEGIN GIT
MAINTENANCE SCHEDULE" and "# END GIT MAINTENANCE SCHEDULE". At a later
`git maintenance stop`, we will go through the table and remove these
lines. Or rather, we will remove the "BEGIN" marker, the "END" marker
and everything between them.

Alas, we have a bug in how we detect the "END" marker: we don't. As we
loop through all the lines of the crontab, if we are in the "old
region", i.e., the region we're aiming to remove, we make an early
`continue` and don't get as far as checking for the "END" marker. Thus,
once we've seen our "BEGIN", we remove everything until the end of the
file.

Rewrite the logic for identifying these markers. There are four cases
that are mutually exclusive: The current line starts a region or it ends
it, or it's firmly within the region, or it's outside of it (and should
be printed).

Signed-off-by: Martin Ågren <martin.agren@gmail.com>
Acked-by: Derrick Stolee <dstolee@microsoft.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
builtin/gc.c
t/t7900-maintenance.sh