派生自 analysis
libgowrapper/gitpush.sh New file @@ -0,0 +1,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 'update' git push cd .. done