Note to self: To look through your git history to find files by name (and to have the files edited in each commit listed)...

git log --all --name-only -- "**/*Base*"

Though note that it's case sensitive, and not because I used a capital B. It's always case sensitive. Looks like there are weird workaround depending on your git version, like not including a glob for filename and piping EVERYTHING to grep to figure out or using git's really unwieldy pathspec.

Labels: ,