当前位置:   article > 正文

Git版本回退操作_git 强制回退

git 强制回退
  • 通过“git reset --hard CommitID”命令回退到指定 CommitID 的版本,如下示例命令:
git reset --hard 8c38ccaed0c6a7e55aa17e8c730f0f3a9a79ae76

注:“git reset --hard”是强制回退到上一个版本或特定版本,此操作不可逆,在使用之前请慎重考虑清楚。

  • 回退到指定提交
git revert [CommitID]

执行完成回退操作后,执行强制推送到远程仓库,以更新当前远程仓库版本为实际回退的版本,命令如下:

git push origin HEAD --force

注:在执行强制推送命令时需要开通 “ForcePush”权限,否则会弹出如下提示:

! [remote rejected] HEAD -> master (TF401027: You need the Git 'ForcePush' permission to perform this action.

权限设定:

Project Settings >> Repos >> Repositories >> 要设定权限的远程仓库 >> Permissions 设定Tag,将“Force push (rewrite history, delete branches and tags)”权限设定为“Allow

 

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/小蓝xlanll/article/detail/694913
推荐阅读
相关标签
  

闽ICP备14008679号