公告板
版本库
filestore
活动
搜索
登录
~chenshijun
/
analysis
派生自
analysis
概况
提交次数
目录
文档
派生
对比
blame
|
历史
|
原始文档
libgowrapper remove sdkhelper deps
zhangmeng
2020-01-20
9c1d6f1f37b9caae2400a668e702d89eb4818cf3
[~chenshijun/analysis.git]
/
libgowrapper
/
gitpush.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/bin/sh
cur=`pwd`
for v in `ls`; do
if [ ! -d $cur"/"$v ]; then
continue
fi
cd $v
echo "~~~~~~push $v~~~~~~"
git add .
git commit -m '"$1"'
git push
cd ..
done