如何git clone develop 分支数据到本地
git init
git remote add origin http://git.dataexa.com:83/insight/insight-app/insight-documents.git
git pull origin develop --allow-unrelated-histories
git fetch origin
git checkout develop
和上传东西到developelop 分支
git add *
git commit -m "wrote a readme file"
git push -u origin develop