From 4bbf32a135ddb0eaa5d82afe820246a23a8f56b0 Mon Sep 17 00:00:00 2001
From: zhangmeng <775834166@qq.com>
Date: 星期五, 20 十二月 2019 16:46:18 +0800
Subject: [PATCH] support hotupdate

---
 libgowrapper/gitcommit.sh |   14 ++++++++++++++
 libgowrapper/gitpull.sh   |   13 +++++++++++++
 libgowrapper/humantrack   |    2 +-
 libgowrapper/vehicle      |    2 +-
 libgowrapper/gitpush.sh   |   15 +++++++++++++++
 libgowrapper/face         |    2 +-
 libgowrapper/yolo         |    2 +-
 7 files changed, 46 insertions(+), 4 deletions(-)

diff --git a/libgowrapper/face b/libgowrapper/face
index fcc639d..a79283f 160000
--- a/libgowrapper/face
+++ b/libgowrapper/face
@@ -1 +1 @@
-Subproject commit fcc639d40cab8217c001870ce0ee834c440b3647
+Subproject commit a79283f652e78fb8591a8af69f973055f9730c9d
diff --git a/libgowrapper/gitcommit.sh b/libgowrapper/gitcommit.sh
new file mode 100755
index 0000000..4e370c8
--- /dev/null
+++ b/libgowrapper/gitcommit.sh
@@ -0,0 +1,14 @@
+#!/bin/sh
+
+cur=`pwd`
+
+for v in `ls`; do
+    if [ ! -d $cur"/"$v ]; then
+        continue
+    fi
+    cd $v
+    echo "~~~~~~pull $v~~~~~~"
+    git add .
+    git commit -m 'update'
+    cd ..
+done
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
diff --git a/libgowrapper/gitpush.sh b/libgowrapper/gitpush.sh
new file mode 100755
index 0000000..92571b8
--- /dev/null
+++ b/libgowrapper/gitpush.sh
@@ -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
diff --git a/libgowrapper/humantrack b/libgowrapper/humantrack
index 21d98bf..f76176d 160000
--- a/libgowrapper/humantrack
+++ b/libgowrapper/humantrack
@@ -1 +1 @@
-Subproject commit 21d98bf697667252eb40719b7f0d0ee86562bb77
+Subproject commit f76176dbeb9eb7e12573b3247fc4248c6b1f97c2
diff --git a/libgowrapper/vehicle b/libgowrapper/vehicle
index 803c42b..c4ec8a5 160000
--- a/libgowrapper/vehicle
+++ b/libgowrapper/vehicle
@@ -1 +1 @@
-Subproject commit 803c42b87028b139e4ac87f920cb479d5ba0c0f2
+Subproject commit c4ec8a5f30cb29dc407472d244a537973b7d3567
diff --git a/libgowrapper/yolo b/libgowrapper/yolo
index 1c07e97..2e1584a 160000
--- a/libgowrapper/yolo
+++ b/libgowrapper/yolo
@@ -1 +1 @@
-Subproject commit 1c07e97d2981ae1daadc55224d59caa1b91ee10f
+Subproject commit 2e1584a6d6d185d8ed950a60f97532c3eb14aa6a

--
Gitblit v1.8.0