Skip to content
On this page

本地回退

git log 获取到你想回退到的那个commit, 然后

bash
 git reset --hard d324ce75cc9bcc6777a2b45c756f4df2f47c4ef3

这样本地就回退完毕

github回退

bash
 git push  -f origin master

其他

这个会影响其他分支么? 不会,只影响你所在的分支,比如这里的master