added pull.sh and fetch.sh

This commit is contained in:
brueckner_m 2015-03-13 13:35:40 +01:00
parent 59c3d26c96
commit 36191396b2
2 changed files with 16 additions and 0 deletions

8
fetch.sh Normal file
View File

@ -0,0 +1,8 @@
#!/bin/bash
git fetch
for i in */; do
cd $i
git fetch
cd ..
done

8
pull.sh Normal file
View File

@ -0,0 +1,8 @@
#!/bin/bash
git pull
for i in */; do
cd $i
git pull
cd ..
done