首頁 Git Restore Commit Record
文章
Cancel

Git Restore Commit Record

前言

稍微記錄一下如何救回不小心使用重設(hard) 刪除的git

Desktop View

Step1.列出所有Log

Desktop View 列出所有Log指令

1
git reflog

Step2.還原

Desktop View 列出所有Log指令

1
git reset --hard xxxxx

備註

要單純切回某個commit做修正,要先用checkout , 再new branch

1
git checkout e761896

或直接使用下面這個指令,等同於checkout + new branch

git branch Your_Branch_Name e761896

本文由作者按照 CC BY 4.0 進行授權