git 常用命令总结

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了git 常用命令总结相关的知识,希望对你有一定的参考价值。

git 删除分支和代码回滚

1. git 删除分支

  本地分支删除

 git branch -D branch

  远程分支删除

 git push origin :branch  (origin 后面有空格)

2. 代码回滚

  指的是将代码库某分支退回到以前的某个commit id

  本地代码回滚

  git reset --hard commit-id  -->回滚到commit-id,将commit-id之后提交的commit都去除
  或
  git reset --hard HEAD~3     -->将最近3次的提交回滚

    远程代码回滚

   这个是重点要说的内容,过程比本地回滚要复杂

  应用场景:自动部署系统发布后发现问题,需要回滚到某一个commit,再重新发布

  原理:先将本地分支退回到某个commit,删除远程分支,再重新push本地分支

  操作步骤如下:

  git checkout the_branch
  git pull
  git branch the_branch_backup     //备份一下这个分支当前的情况
  git reset --hard the_commit_id    //把the_branch本地回滚到the_commit_id
  git push origin :the_branch      //删除远程 the_branch
  git push origin the_branch       //用回滚后的本地分支重新建立远程分支
  git push origin :the_branch_backup //如果前面都成功了,删除这个备份分支

 

以上是关于git 常用命令总结的主要内容,如果未能解决你的问题,请参考以下文章

git 常用命令总结

git 常用命令总结

干货收藏!总结常用 Git 命令清单

Git 常用命令总结

git的最常用命令总结

怒转~Git 常用命令总结