mirror of
https://github.com/flynx/git-utils.git
synced 2025-10-28 10:40:08 +00:00
This commit is contained in:
commit
0d8d6a15b3
12
git-pullall
Normal file
12
git-pullall
Normal file
@ -0,0 +1,12 @@
|
||||
#!/bin/bash
|
||||
|
||||
for d in * ; do
|
||||
# skip non-dirs...
|
||||
! [ -d "$d/.git" ] && continue
|
||||
|
||||
echo $d
|
||||
cd "$d"
|
||||
git pull
|
||||
cd ..
|
||||
echo
|
||||
done
|
||||
Loading…
x
Reference in New Issue
Block a user