I am working on a project which is hosted on GIT. In some directory in my repo, somebody has deleted a file say [a.txt] at path [/home/git/myProject/generic]. Now, a lot of commits have happened on files in this directoty. I want to track down the commit in which this file was removed.
What I have tried.
git log --oneline myProject/generic But this returns a lot of commits and its difficult to track down the exact commit.
I also tried
git log --oneline myProject/generic/a.txt But this returns, path does not exist error.
Suggestions ?