github平台如何回退代码到历史指定版本

https://github.com

前提是 本地已经有了 git的origin master库 

或者克隆需要回退的代码到本地


1.  查询历史对应不同版本的ID ,用于回退使用

$ git log --pretty=oneline
github平台如何回退代码到历史指定版本_第1张图片

使用git log命令查看所有的历史版本,获取你git的某个历史版本的id

       假设查到历史版本的id是fae6966548e3ae76cfa7f38a461c438cf75ba965

2.  恢复到历史版本
$ git reset --hard fae6966548e3ae76cfa7f38a461c438cf75ba965

3. 把修改推到远程服务器

$ git push -f -u origin master  

4. 重新更新就可以了

git pull







你可能感兴趣的:(code)