bash-scripts/git-guncelle.sh
2014-03-25 00:40:00 +00:00

16 lines
166 B
Bash
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

#!/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