Commit e70dab39 authored by Oswald Buddenhagen's avatar Oswald Buddenhagen Committed by Oswald Buddenhagen
Browse files

deal with overzealous garbage collection


every repo should have refs/changes (because fetching changes is the
first thing the bot does after cloning a repo), but with the default
config, gc will pack the refs, and the directory vanishes if no refs
were created for too long (which also breaks our cleanup).
don't error out when that happens.

also document how to avoid that situation to start with.

Change-Id: I92d539785a9810c02263f954d9299169d2fa3f2c
Reviewed-by: default avatarOrgad Shaneh <orgads@gmail.com>
Reviewed-by: default avatarSimo Fält <simo.falt@digia.com>
parent 085d02fc
No related merge requests found
Showing with 2 additions and 0 deletions
......@@ -20,6 +20,8 @@ if test -z "$root"; then
fi
cd "$root" || exit
find -name '*.git' -type d -prune | while read dir; do (
# use "git config --global gc.packrefs notbare" to make sure this works
test -d $dir/refs/changes || exit
echo "Entering $dir ..."
cd "$dir" || exit
find refs/changes -mindepth 1 -mtime +10 -delete
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment