mirror of
https://github.com/namecoin/ncdns-repro
synced 2024-11-13 19:12:01 +00:00
14 lines
247 B
Bash
Executable File
14 lines
247 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
set -euxo pipefail
|
|
shopt -s failglob
|
|
|
|
for PROJECT in ./git_clones/*
|
|
do
|
|
PROJECT_BASE=$(basename $PROJECT)
|
|
mv ${PROJECT}/.git/index ./git_index/${PROJECT_BASE}
|
|
done
|
|
|
|
echo "Final git cache usage:"
|
|
du -h -d1 ./git_clones/
|