作者:李旭光
引用请标明出处
指令表
指令 | 含义 | 备注 |
---|---|---|
git add . | 提示增加文件 | .代表所有 |
git commit -m | “说明内容” 提交到本地服务器 | |
git status | 显示修改信息 | |
git pull | 从网络服务器拉 更新最新版本 | |
git push | 上传最新版本 | |
git branch | 查看当前分支 | |
git checkout develop | 切换到develop模式 | |
git merge master | 从master合并过来 | |
git push origin develop | 提交 | |
git clone [email protected]:bat-web.git | 从服务器克隆 |