mirror of
https://github.com/flynx/git-utils.git
synced 2025-10-29 03:00:10 +00:00
13 lines
129 B
Bash
13 lines
129 B
Bash
#!/bin/bash
|
|
|
|
for d in * ; do
|
|
# skip non-dirs...
|
|
! [ -d "$d/.git" ] && continue
|
|
|
|
echo $d
|
|
cd "$d"
|
|
git pull
|
|
cd ..
|
|
echo
|
|
done
|