blob: 03e470175fd4e7efce6a72435f288f4e4ded30bd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
#!/bin/sh
# clean git repositories
# shellcheck disable=SC2119,SC2120
# shellcheck source=../lib/load-configuration
. "${0%/*}/../lib/load-configuration"
for repo in ${repo_names}; do
eval 'repo_path="${repo_paths__'"${repo}"'}"'
printf 'cleaning %s (%s) ...\n' \
"${repo}" \
"${repo_path}"
git -C "${repo_path}" gc
printf '... done\n'
done
|