Answers for "git restore files deleted"

2

recover lost file git

git log --diff-filter=D --summary
git checkout $commit path/to/file
Posted by: Guest on May-13-2020
0

Git Restoring Deleted Files

$ git checkout <commit hash> -- <filename>
Posted by: Guest on April-20-2021

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language