git 恢复版本
# 保存到堆栈
git stash
# 重置版本
git reset --hard commit_id
# 强制推送
git push --force
# 还原修改的内容
git stash apply
git stash
将目前还不想提交的但是已经修改的内容进行保存至堆栈中,后续可以在某个分支上恢复出堆栈中的内容
git reset --hard commit ID : commit ID 历史版本id
git 恢复版本
# 保存到堆栈
git stash
# 重置版本
git reset --hard commit_id
# 强制推送
git push --force
# 还原修改的内容
git stash apply
git stash
将目前还不想提交的但是已经修改的内容进行保存至堆栈中,后续可以在某个分支上恢复出堆栈中的内容
git reset --hard commit ID : commit ID 历史版本id