gitlab还原到上个版本_git:GitLab代码回滚到特定版本

在当前branch上多次commit代码并且push后,发现不符合要求,需要回滚到特定的版本。步骤如下:

1、查找commitId

(1)用命令行打开git项目路径,输入git log命令查看commit记录,如下:

$ git log

(2)也可以去gitlab托管平台 History 看commitid  d580ea7dab097d8ea6d658adbc7e9d57ef22669a

2、找到需要回滚的commit,输入git reset --hard {commitId},将本地文件回滚:

$ git reset --hard  d580ea7dab097d8ea6d658adbc7e9d57ef22669a

HEAD is now at d580ea7da add a constellation test case

3、此时本地文件已经回滚到刚刚commit d580ea7dab097d8ea6d658adbc7e9d57ef22669a之后的状态,但是服务器仍然没有改变,需要继续远程回滚:

$ git push -f

执行完后回滚成功

android开发学习 ------- git - 将代码回滚到任意版本

不小心将一个东西错误提交到git - 远程仓库上 参考  https://www.cnblogs.com/wancy86/p/5848024.html 你的git可能关联了多个远程仓库,每个关联的代码 ...

Git 代码撤销、回滚到任意版本(当误提代码到本地或master分支时)

转自https://www.cnblogs.com/lwh-note/p/9639835.html

你可能感兴趣的:(gitlab还原到上个版本)