How to reflog git had delete file

Today i will show you how to reflog git restore file that you had delete.

Step 1: Check reflog

1
git reflog

Step 2: Find the commit that delete file

1
git show <commit>

Step 3: Restore file

1
git checkout <commit> -- <file>

Step 4: Commit file

1
2
git add <file>
git commit -m "Restore file"

Step 5: Push file

1
git push

That’s it. You had restore file that you had delete.

1
2
3

```bash
git reflog
1
git reset HEAD@{2} 

Conclusion

Today i show you how to reflog git restore file that you had delete. Hope you enjoy it.

Reference