diff options
author | Andrei Karas <akaras@inbox.ru> | 2014-11-05 14:09:19 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2014-11-05 14:09:19 +0300 |
commit | 7d6463bc19b1efad16ce12d6accd7c2843974c1a (patch) | |
tree | 3ebc4bcb8466552d96d867979abb60b7a16804b7 /pull.sh | |
parent | ecb53f7baa0abb9c3de554e7f5d5e173f91e984d (diff) | |
download | all-7d6463bc19b1efad16ce12d6accd7c2843974c1a.tar.gz all-7d6463bc19b1efad16ce12d6accd7c2843974c1a.tar.bz2 all-7d6463bc19b1efad16ce12d6accd7c2843974c1a.tar.xz all-7d6463bc19b1efad16ce12d6accd7c2843974c1a.zip |
Rename pullall.sh and pushall.sh to pull.sh and push.sh
Diffstat (limited to 'pull.sh')
-rwxr-xr-x | pull.sh | 27 |
1 files changed, 27 insertions, 0 deletions
@@ -0,0 +1,27 @@ +#!/bin/bash + +function status { + if [ ! -d "$1" ]; then + return + fi + DIR=`pwd` + cd "$1" + STR=`git diff --name-only` + STR2=`git status|grep "Your branch is ahead"` + STR3=`git status -s -uno` + echo "$2:" + if [[ -n "${STR}${STR2}${STR3}" ]]; then + echo -e "\e[1;31mCant pull because changes not pushed\e[0m" + else + git pull + fi + cd $DIR +} + +status . evol-all +status client-data client-data +status server-code server-code +status server-data server-data +status tools tools +status server-code/src/evol evol-hercules +status music music |