scripts/pull.sh
2023-05-07 22:30:21 +02:00

14 lines
135 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