summaryrefslogtreecommitdiff
path: root/bin/clean-git
blob: 2504f2bc77d087606a0362828ffa15977dfd67c2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/bin/sh

# clean git repositories

# shellcheck source=conf/default.conf
. "${0%/*}/../conf/default.conf"

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