idea git 版本回滚

1、项目右键后,点击“Git - Show History”

idea git 版本回滚

 

2这里会显示有历史提交的版本记录(这里我们假设要回滚到 “提交” 版本中)

idea git 版本回滚

 

  2、选中 “提交” ,右键Copy Revision Number

idea git 版本回滚

 

 3、回到项目,右键-Git-Repository-Reset HEAD

 idea git 版本回滚

 

4、Reset Type选择Hard,To Commit处黏贴刚刚复制的版本号;然后点击Reset按钮

idea git 版本回滚

 

以上操作就能够使得项目回滚到“提交”版本

(注:操作之后提交版本会进行报错)

(1)、点击IDEA右下角,输入“ git push -u origin master -f “这个代码是表示冲突的时候强制提交,一般不建议

idea git 版本回滚

 

 

 如果出现以下代码,说明在代码平台上这个分支是受保护的,不允许提交,可以在代码平台上把分支先设置成不保护状态

1 remote: GitLab: You are not allowed to force push code to a protected branch on this project.

 

出现以下内容表示提交成功

1 2 3 4 5 6 7 8 9 Enumerating objects: 49, done. Counting objects: 100% (49/49), done. Delta compression using up to 8 threads Compressing objects: 100% (26/26), done. Writing objects: 100% (32/32), 139.99 KiB | 46.66 MiB/s, done. Total 32 (delta 7), reused 18 (delta 2) To 提交地址  0304112...e40991a master -> master (forced update) Branch 'master' set up to track remote branch 'master' from 'origin'.

  

 

上一篇:shell编程(四)脚本实例


下一篇:linux之shell脚本