From 00d07f58cd88a1e9dd13deed75ad1af3db6ebcf6 Mon Sep 17 00:00:00 2001 From: zhangmeng <775834166@qq.com> Date: 星期二, 17 十二月 2019 16:07:01 +0800 Subject: [PATCH] udpate --- libgowrapper/gitpull.sh | 13 +++++++++++++ 1 files changed, 13 insertions(+), 0 deletions(-) diff --git a/libgowrapper/gitpull.sh b/libgowrapper/gitpull.sh new file mode 100755 index 0000000..0f025cf --- /dev/null +++ b/libgowrapper/gitpull.sh @@ -0,0 +1,13 @@ +#!/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 -- Gitblit v1.8.0