I\'d like to find commits in my code base that add video files to throw them out. Is there a way to look for these files in git ?
For example let\'s say all videos have
You can try this:
git log --follow *.wmv
this will list all commits (with hash) that modified wmv files.