Note that I'm not trying to disable the creation of these files. I want to keep them around until I'm ready to commit changes to my source control.
The files are scattered throughout many subdirectories of the main source code directory and are of the format "._". For example, test.txt becomes ._test.txt.
I've tried this command, but it doesn't work:
rm -rf ._*
Any thoughts?