mirror of
https://gh.wpcy.net/https://github.com/WeblateOrg/weblate.git
synced 2026-05-04 11:34:39 +08:00
10 lines
120 B
Bash
Executable file
10 lines
120 B
Bash
Executable file
#!/bin/sh
|
|
|
|
# Script to compact all git repos
|
|
|
|
cd weblate/repos
|
|
for d in */* ; do
|
|
cd $d
|
|
git gc
|
|
cd ../..
|
|
done
|