git reflog –查看历史的git commit记录,找到需要恢复的hash_id两种办法: 以历史版本创建一个新的分支 git branch recover-branch hash_id将当前HEAD还原到历史提交版本 git reset –hard hash_id