1、git log . ,找到想要还原版本的commit_id。
2、git checkout commit_id ”file path“。
3、可以直接commit,也可以git reset HEAD <file>..." to unstage),进一步修改commit。
git还原特定版本的某个文件
于 2023-03-31 09:41:12 首次发布
1、git log . ,找到想要还原版本的commit_id。
2、git checkout commit_id ”file path“。
3、可以直接commit,也可以git reset HEAD <file>..." to unstage),进一步修改commit。