git里面实现撤销commit
这个据我目前所知,有至少4个途径可以做到
1、git reset
2、git revert
3、git rm –cached
4、git checkout
这个可以参考这个
https://www.atlassian.com/git/tutorials/resetting-checking-out-and-reverting
idea 如何实现的 git revert 是如何实现的?
10:00:04.294: cd D:\workspace\idea\user-push-service
10:00:04.296: git -c core.quotepath=false rm --cached -f -- src/main/java/com/web/sohu/TestController.java
10:00:04.391: cd D:\workspace\idea\user-push-service
10:00:04.391: git -c core.quotepath=false checkout HEAD -- src/main/java/com/web/sohu/TestController.java
like this。
时间: 2024-10-26 19:07:59