scripts/pull.sh
2023-07-15 00:35:28 +02:00

14 lines
135 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
cd ..
done