Git 12返回过去版本2
2018-11-30 本文已影响0人
昵称啦啦啦
Git返回过去版本2
========
命令
- git reflog [-n num] 记不住commit_id时使用
- git reset --hard [commit_id] 返回到指定id的版本
代码
# 返回到之前3个版本
git reset --hard HEAD~3
# 忘记commit_id使用git reflog 查看记录 参数看查看最近几条
git reflog -3
# 使用查看到的commit_id恢复回去
git reset --hard [commit_id]