![](https://img.kancloud.cn/e3/23/e323e0d04342076d78b7ad38cb1a48ee_642x187.png)
git pull 更新代码
git branch -a 查看服务器当前环境代码
cd 切换到某个目录
tab键快捷输入剩余名称
ll查看目录
项目操作请切换用户:su - of_dev
git checkout hotfix-qrcode 切换到某个分支开发环境
![](https://img.kancloud.cn/63/f7/63f750932c357be558a353ff8dd7c9a6_640x459.png)
![](https://img.kancloud.cn/a2/b1/a2b13e2984badf08a4b88d2d20e51031_718x35.png)
vim命令:直接 i 输入,esc退出输入 :号输入 w 保存 wq 保存退出 q 退出 u 撤回
git reset --hard 回撤上一次正确的
git remote -v 查看远程仓库地址
git clone -b test https://github.xxxx.git 克隆其他分支 test为分支名称
git push -u origin feature1.0.2 本地分支推送到远程仓库
git push origin --delete feature1.0.1 删除远程仓库分支
git merge master master合并到本地分支
git branch --set-upstream-to=origin/feature1.0.2 设置远程某个分支到本地分支关联
git checkout -b feature1.0.2 本地创建分支
git push --set-upstream origin feature1.0.2 推送本地分支到远程仓库进行关联
git branch -D feature1.0.2 删除本地分支
git branch --set-upstream-to origin feature1.1.0 本地仓库分支关联远程仓库分支