Run proper git maintenance services on aur.git?
We have aurweb-git.service
as a timer which daily runs:
#!/bin/bash
find /srv/http/aurweb -maxdepth 1 -type d -name "*.git" -execdir sh -c 'cd {} && git gc' \;
This seems a bit yolo git maintenance
?