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
标签:reset,git,hard,--,GitLab,某次,回退,commit 来源: https://blog.csdn.net/ruoshui77/article/details/121570830