zoukankan      html  css  js  c++  java
  • git 删除本地分支、远程分支、本地回滚、远程回滚

    一、 git 删除分支

    1. git 删除本地分支

    • git branch -D branchname

    2. git 删除远程分支

    • git push origin :branchname (origin 后面有空格)

    二、 git代码库回滚: 指的是将代码库某分支退回到以前的某个commit id

    1. 本地代码库回滚

    • git reset --hard commit-id :回滚到commit-id,讲commit-id之后提交的commit都去除

    • git reset --hard HEAD~3:将最近3次的提交回滚

    2. 远程代码库回滚

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

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

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

    操作步骤:

    1. git checkout the_branch

    2. git pull

    3. git branch the_branch_backup //备份一下这个分支当前的情况

    4. git reset --hard the_commit_id //把the_branch本地回滚到the_commit_id

    5. git push origin :the_branch //删除远程 the_branch

    6. git push origin the_branch //用回滚后的本地分支重新建立远程分支

    7. git push origin :the_branch_backup //如果前面都成功了,删除这个备份分支

    如果使用了gerrit做远程代码中心库和code review平台,需要确保操作git的用户具备分支的push权限,并且选择了 Force Push选项(在push权限设置里有这个选项)

    另外,gerrit中心库是个bare库,将HEAD默认指向了master,因此master分支是不能进行删除操作的,最好不要选择删除master分支的策略,换用其他分支。如果一定要这样做,可以考虑到gerrit服务器上修改HEAD指针。。。不建议这样搞

  • 相关阅读:
    SQL Server 2005 中 Cross join & Cross Apply & Outer Apply 的区别
    How to install Database using commandline prompt
    Get SQL Server default collation
    Shrink DB and Log
    Visual C++ Debugging: Why does program work in debug mode, but fail in release mode?
    使用Windows的SHFileOperation外壳函数实现文件操作
    2 types of C++ compiler guards
    LUA中的基本函数库
    Ruby 数组操作方法(转)
    ruby中的yield的概念
  • 原文地址:https://www.cnblogs.com/juking/p/7096843.html
Copyright © 2011-2022 走看看