git 恢复单个文件

首先查看该文件的历史版本信息:git log [email protected]

记录下需要恢复的commit版本号:如 9aa51d89799716aa68cff3f30c26f8815408e926

恢复该文件:git reset 9aa51d89799716aa68cff3f30c26f8815408e926 [email protected]

提交git:git commit -m "revert old file"

你可能感兴趣的:(git)