How to find when a specific file existed in git history and how long, and how to get all its versions?
I tried
git log --all -- **/thefile.*
and it doesn't output anything.
The command
git --no-pager log --all --full-history --summary > hist.txt
gives me no file names, but rather a commit info.
P.S. I am also using TortoiseGit.
PPS. I tried to use answers from following question: Git: How to search for a deleted file in the project commit history? and they didn't help me. I just want the practical result (an advice that everybody could take as it is and it will work).