how to check file history in git code example
Example 1: git search history for file
git log --all --full-history -- "**/thefile.*"
Example 2: git log for specific file
git log -p filename
Example 3: git look at changes to a file
$ git log --follow -p -- <file>