From Chris:
TIL: If you want to modify some files on your local environment that you should not commit for some reason
git update-index --skip-worktree <file_name>
is the git command you need to avoid having to remember to NOT commit these files. It will ignore the changes and keep your git status clean