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 回退单个文件版本的主要内容,如果未能解决你的问题,请参考以下文章