git 回退单个文件版本

Posted blackeyeprogram

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了git 回退单个文件版本相关的知识,希望对你有一定的参考价值。

1. 查询所有历史提交记录:git log --pretty=oneline <filename>

2. 展示历史内容:git show <commit_id>

3. checkout对应的版本。 git checkout <hash> <filename>

4. 更新完先要的,内容就可以commit ,然后push

 

以上是关于git 回退单个文件版本的主要内容,如果未能解决你的问题,请参考以下文章

git回退单个文件

git 如何让单个文件回退到指定的版本

git 回退单个文件

DevOps使用教程 华为云(18)git 把单个文件回退到某一版本

git使用笔记版本回退和撤销

Git命令之回退篇 git revert git reset