Restore a deleted file in a Git repo - Stack Overflow
I've got this solution. Get the id of the commit where the file was deleted using one of the ways below. git log --grep=*word* git log -Sword git log | grep --context=5 *word* git log --stat | grep --context=5 *word* # recommended if you hardly remember a...