dotfiles/git_auto_pull.sh
Frank Villaro-Dixon aac1c3832c testing..
2013-07-31 01:14:50 +02:00

38 lines
666 B
Bash
Executable file

#!/bin/bash
red='\033[31m'
green='\033[32m'
RED='\033[31m\033[01m'
blue='\033[34m'
BLUE='\033[34m'
cyan='\033[36m'
CYAN='\033[36m'
magenta='\033[35m'
DFT='\033[0m'
white='\033[37m'
for gitrepo in `find ./ -maxdepth 4 -type d -name ".git" | sed 's/\/.git\+$//'`;
do
cd $gitrepo
if [ -e do_not_auto_check ]; then
cd - > /dev/null
continue
fi;
echo $gitrepo
git status
#echo $A | grep "working directory clean"
#if [ $? -eq 1 ]; then
git pull 2>/dev/null
#fi;
#RESULT=`git pull 2>/dev/null`
#if [ !`echo $RESULT | grep "up to date"` ]; then
# echo -e "$green up to date $DFT"
#else
# echo $RESULT
#fi;
cd - > /dev/null
echo "==========="
done