如果想撤销之前的某一版本,但是又想保留之前的该版本后面的其他版本
1.查看版本
查看提交的历史,来确定想退回的那个版本
git log
2.撤销提交
git revert commit_id
//revert 默认是提交的
// git revert -n| --no-commit[commit-id]: no-commit选项不会自动提交,需要手动提交
撤销单个文件的修改:
git checkout --[文件名]
如果想撤销之前的某一版本,但是又想保留之前的该版本后面的其他版本
1.查看版本
查看提交的历史,来确定想退回的那个版本
git log
2.撤销提交
git revert commit_id
//revert 默认是提交的
// git revert -n| --no-commit[commit-id]: no-commit选项不会自动提交,需要手动提交
撤销单个文件的修改:
git checkout --[文件名]