git常用操作
git config --global user.name "Your Name Comes Here"
git config --global user.email you@yourdomain.example.com
git clone -b dev https://username:password@git.coding.net/xxx/xxx.git 克隆dev分支到本地
git pull https://git.coding.net/xxx/xxx.git dev:dev 拉取dev分支的远程代码
git push --progress https://git.coding.net/xxx/xxx.git dev:dev提交代码的远程分支