diff options
author | Andrei Karas <akaras@inbox.ru> | 2014-11-05 13:09:50 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2014-11-05 13:09:50 +0300 |
commit | ad0db3a0b5ad68f5d8485f1e7ecf418a689b40cb (patch) | |
tree | d190d8bba55a8e4a631d9e2c9aca2cfa15bfdadc | |
parent | c66d05ce1519db73520236370d1fec1d4f3af238 (diff) | |
download | evol-all-ad0db3a0b5ad68f5d8485f1e7ecf418a689b40cb.tar.gz evol-all-ad0db3a0b5ad68f5d8485f1e7ecf418a689b40cb.tar.bz2 evol-all-ad0db3a0b5ad68f5d8485f1e7ecf418a689b40cb.tar.xz evol-all-ad0db3a0b5ad68f5d8485f1e7ecf418a689b40cb.zip |
add script for push all repos if changes present.
New script: pushall.sh
-rwxr-xr-x | pushall.sh | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/pushall.sh b/pushall.sh new file mode 100755 index 0000000..67bfe0a --- /dev/null +++ b/pushall.sh @@ -0,0 +1,19 @@ +#!/bin/bash + +function status { + DIR=`pwd` + cd $1 + STR=`git status|grep "Your branch is ahead"` + if [[ -n ${STR} ]]; then + echo "pusing $1" + git push + 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 |