1. 程式人生 > >git回滾到之前提交的某個版本

git回滾到之前提交的某個版本

先顯示提交的記錄:

git log
commit e499aac9257354c54ac2e1ff6a393ac7c8d2f342
Author: xx <[email protected]>
...... 

回到指定版本:

git reset --hard e499aac9257354c54ac2e1ff6a393ac7c8d2f342

強制提交:

git push -f origin master

參考網址:
https://www.cnblogs.com/wancy86/p/5848024.html
膜拜大佬~~