From 90105d1b6a74d179f31cb438cf49149f9fa8546e Mon Sep 17 00:00:00 2001 From: zhangmeng <775834166@qq.com> Date: 星期五, 20 十二月 2019 16:43:58 +0800 Subject: [PATCH] update --- /dev/null | 15 --------------- 1 files changed, 0 insertions(+), 15 deletions(-) diff --git a/libgowrapper/gitpull.sh b/libgowrapper/gitpull.sh deleted file mode 100755 index 0f025cf..0000000 --- a/libgowrapper/gitpull.sh +++ /dev/null @@ -1,13 +0,0 @@ -#!/bin/sh - -cur=`pwd` - -for v in `ls`; do - if [ ! -d $cur"/"$v ]; then - continue - fi - cd $v - echo "~~~~~~pull $v~~~~~~" - git pull - cd .. -done diff --git a/libgowrapper/gitpush.sh b/libgowrapper/gitpush.sh deleted file mode 100755 index 92571b8..0000000 --- a/libgowrapper/gitpush.sh +++ /dev/null @@ -1,15 +0,0 @@ -#!/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 -- Gitblit v1.8.0