zhangmeng
2019-12-23 69b01fa0afbc796ebc08dec8a47f1681a9e23dde
update libgowrapper
1个文件已添加
23 ■■■■■ 已修改文件
modulepush.sh 23 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
modulepush.sh
New file
@@ -0,0 +1,23 @@
#!/bin/sh
cur_dir=`pwd`
src=$cur_dir"/libgowrapper"
cd $src
for value 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