zhangmeng
2019-12-23 0cee64d2b2034f1068c894e0adec9037be03c93b
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#!/bin/sh
 
cur_dir=`pwd`
src=$cur_dir"/libgowrapper"
 
cd $src
for v in `ls`; do
    if [ ! -d $src"/"$v ]; then
        continue
    fi
    cd $v
    echo "~~~~~~push $v~~~~~~"
    git add .
    git commit -m 'update'
    git push
    cd ..
done
 
cd $cur_dir
git add .
git commit -m 'update libgowrapper'
git push