scripts/pull.sh
2024-03-09 20:33:31 +01:00

14 lines
138 B
Bash
Executable File

#!/bin/sh
cd ..
for d in *; do
echo "current directory: $d"
cd "$d"
# git pull
# git gc
# git clean -fx
git status -s
cd ..
done