狼牙步兵组嵌软代码
mkdir 代码文件目录名 #创建git代码目录
cd 代码文件目录名
git init #将当前目录初始化为git管理区
在git目录里复制入.gitignore
git add * #将所有的文件添加到暂存区
git commit -m "first commit" #提交到本地库
git remote add origin https://gitee.com/***** #链接代码库地址
git push -u origin "master" #将本地origin提交到master分支
下载最新代码库
#从develop copy目前代码
git clone -b develop http://gitslab.yiqing.com/declare/about.git
开发
git add *
git commit -m "每日简单更新说明"
git push -u origin "develop"
git add *
git commit -m "更新说明"
git push -u origin "master"