scripts/pull.sh
2023-05-07 20:05:02 +02:00

14 lines
138 B
Bash

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