git

git reset

"回退到指定版本"

Posted by Jht on September 10, 2021

git reset

回退到上一个版本

git reset --hard HEAD^ 

# 提交
git push -f 

回退到某个指定的版本

# 139xxxxxxxxxxxxxxxxxxxxxxxxxxxx 是git提交的历史版本号
git reset --hard 139xxxxxxxxxxxxxxxxxxxxxxxxxxxx 

# 提交
git push -f