Look for deleted files in Git

# Example to quickly look for a deleted file
$ git log --diff-filter=D --summary | grep -i delete | grep -i barclay

Use this to find actual commit for file and you can search it like a less command
$ git log --diff-filter=D --summary

Refer: http://stackoverflow.com/questions/7203515/how-to-locate-a-deleted-file-in-the-commit-history

Leave a Reply