«

git如何回退到某个历史版本

时间:2024-3-4 03:25     作者:韩俊     分类: Linux


这篇文章主要介绍“git如何回退到某个历史版本”,在日常操作中,相信很多人在git如何回退到某个历史版本问题上存在疑惑,小编查阅了各式资料,整理出简单好用的操作方法,希望对大家解答”git如何回退到某个历史版本”的疑惑有所帮助!接下来,请跟着小编一起来学习吧!

1、使用git log命令查看所有的历史版本

git log

commit 98155192a294926a23cd3689e29f8cd7a9918ce4
Author: liuyafei
Date:   Thu Jun 20 14:43:09 2019 +0800

    Snowflake雪花算法

commit 56bc3bbb01c1c7a07cdef6960578cf9ecac3dbcf
Author: liuyafei <50669290@qq.com>
Date:   Wed Jun 19 16:50:06 2019 +0800

    字典字段 DictKey => DictId

commit 2f4e678b2c7ee51772c13772cae3f09d5a3b658a
Author: liuyafei <50669290@qq.com>
Date:   Mon Mar 18 14:51:16 2019 +0800

    关联图斑个数,关联去掉

2、切换到指定版本

git reset --hard 139dcfaa558e3276b30b6b2e5cbbb9c00bbdca96

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

git push -f -u origin master

标签: linux

热门推荐