Git 常用命令

查看当前状态

git status

新建分支

git checkout -b develop

新建分支并关联到远端

git checkout -b develop origin/develop

切换分支

git checkout xxx

忘记命令

git checkout --help

强制回退到上一次提交

git reset --hard head~1

撤销所有修改

git checkout .

解决冲突后 有问题

git commit -a 一下就能自当合并了

上一篇:jenkins的视图创建


下一篇:git flow