14 lines
138 B
Bash
Executable File
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
|