Merge branch 'master' of gitorious.psi.ch:sls_det_software/sls_detectors_package

This commit is contained in:
Dhanya Maliakal 2015-03-25 15:37:31 +01:00
commit 1611dde9d4
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