博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Git回版本回退
阅读量:5335 次
发布时间:2019-06-15

本文共 2837 字,大约阅读时间需要 9 分钟。

这里我们使用命令行的方式对已经提交的版本进行强行回退操作~~~

一、将git的安装目录bin放到path路径中,

       如下图所示:

       

 

二、进入cmd界面,依次输入下面内容即可(git 远程仓库 回退到指定版本)

git checkout branches          #检出当前分支 

git branch branches_bak     #备份相关分支
git reset --hard 版本号          #将本地代码强行回退到指定的版本号
git push -f origin branches       #将本地分支强行push到远程分支上面

 

下面是我的相关执行操作,仅供参考:

 

 

Microsoft Windows [版本 6.1.7601]                                                                                                                                                                                                                                   版权所有 (c) 2009 Microsoft Corporation。保留所有权利。                                                                                                                                                                                                             D:\soft\devleop_tools\ideaUI\IntelliJ IDEA 14.1.3\workspace\fclient-git>git checkout branchesAlready on 'branches'Your branch is up-to-date with 'origin/branches'. D:\soft\devleop_tools\ideaUI\IntelliJ IDEA 14.1.3\workspace\fclient-git>git branch branches_bak                                                                                                                                                                                      D:\soft\devleop_tools\ideaUI\IntelliJ IDEA 14.1.3\workspace\fclient-git>git reset --hard cfdbafc7HEAD is now at cfdbafc 修改登录相关的配置                                                                                                                                                                  Warning: Your console font probably doesn't support Unicode. If you experience strange characters in the output, consider switching to a TrueType font such as Consolas! D:\soft\devleop_tools\ideaUI\IntelliJ IDEA 14.1.3\workspace\fclient-git>git reset --hard cfdbafc7HEAD is now at cfdbafc 修改登录相关的配置                                                                                                                                                                  Warning: Your console font probably doesn't support Unicode. If you experience strange characters in the output, consider switching to a TrueType font such as Consolas! D:\soft\devleop_tools\ideaUI\IntelliJ IDEA 14.1.3\workspace\fclient-git>git push -f origin bracheserror: src refspec braches does not match any.error: failed to push some refs to 'http://***.com/app/**.git' D:\soft\devleop_tools\ideaUI\IntelliJ IDEA 14.1.3\workspace\fclient-git>git push -f origin branchesUsername for 'http://***.com': zhanghao80Password for 'http://zhanghao80@***.com':Total 0 (delta 0), reused 0 (delta 0)remote: Updating references: 100% (1/1)To http://***.com/app/**.git + bfdb901...cfdbafc branches -> branches (forced update) D:\soft\devleop_tools\ideaUI\IntelliJ IDEA 14.1.3\workspace\fclient-git>

  

  

 

Thank is all ~~

转载于:https://www.cnblogs.com/xiohao/p/5521230.html

你可能感兴趣的文章
python基本数据类型
查看>>
1305: [CQOI2009]dance跳舞 - BZOJ
查看>>
关于TDD的思考
查看>>
Cocos2d-x学习之windows 7 android环境搭建
查看>>
将html代码中的大写标签转换成小写标签
查看>>
jmeter多线程组间的参数传递
查看>>
零散笔记
查看>>
第1章2节《MonkeyRunner源码剖析》概述:边界(原创)
查看>>
ubuntu16下面 redis 无法链接到客户端问题
查看>>
android下实现4分屏播放4路高清h264格式的rtsp流
查看>>
[计算机网络] vsftpd的安装与使用
查看>>
【源代码】LinkedList源代码分析
查看>>
Cocostudio学习笔记(4) LoadingBar+ TextField
查看>>
cxf和jboss eap 6.2版本号冲突
查看>>
ORACLE触发器具体解释
查看>>
IOS开发之SVN的使用
查看>>
Python学习之元组
查看>>
第三次作业
查看>>
quartz多任务调度+spring 实现
查看>>
Codeforces 97.B Superset
查看>>