Added files

This commit is contained in:
saundersp
2023-05-07 20:05:02 +02:00
parent 9521270bfe
commit 20b2cd160f
8 changed files with 981 additions and 0 deletions

13
pull.sh Normal file
View File

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