git常用命令
Posted Make Change
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了git常用命令相关的知识,希望对你有一定的参考价值。
1.新分支
创建新分支:git branch <branch_name>
创建分支并切换到新的分支上:git checkout -b <branch_name>
2.切换到新分支:git checkout <branch_name>
3.回滚版本:git reset –hard commit-id
4.删除本地分支:git branch -D <branch_name>
5.删除远程分支:git push origin --delete <branch_name>
6.将新分支上传到远程仓库:git push -u origin develop
7.查看提交的记录:git log
以上是关于git常用命令的主要内容,如果未能解决你的问题,请参考以下文章