GitLab回退到某次commit

1.查询需要回退的commit记录
$ git log

2.gitlab回退到某次commit
$ git reset --hard commitID
$ git reset commitID

其他类似命令:
$ git reset --hard HEAD^ 回退到上个版本
$ git reset --hard HEAD~3 回退到前3次提交之前,以此类推,回退到n次提交之前

3.强制重新提交到远程
$ git push -f

上一篇:GitLab、Jenkins、Sonar集成,分支/代码合并事件触发代码规范检察


下一篇:✍39 Gitlab搭建