1.查看提交历史
git log
commit 4fe5108e0ca86d439f0da61751fac5845ec64f5c 3
commit 38f9efd1f004996330a78c4b78372ba7c3746989 2
commit 5617205b96685ee157b67f3d66c71aa24cc37860 1
会出现一些commit id
2.找到需要回退的文件路径,如
api/v2/s.php
3.开始回退,要把 api/v2/s.php回退到 commit 1的状态,
git checkout 5617205b96685ee157b67f3d66c71aa24cc37860 api/v2/s.php
4.提交回退
这个时候使用 git status 可以看到 api/v2/s.php是modified的状态,而且显示是绿色的
这个时候正常commit就可以了