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 | git add <file> |
Step 5: Push file
1 | git push |
That’s it. You had restore file that you had delete.
1 |
|
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