git güncelleme betiği eklendi

This commit is contained in:
CaylakPenguen 2014-03-25 00:40:00 +00:00
parent 77ea5b95d8
commit 8bf8973088

15
git-guncelle.sh Normal file
View File

@ -0,0 +1,15 @@
#!/bin/bash
# git depolarını Güncelleyen Betik
# 21 - Mart - 2014
# Caylak Penguen
cd $HOME
cd git
ls -1
for i in `ls -1`
do
echo "$i"
cd $i
git fetch
cd ..
done