August 29, 2012

Recursively deleting .gitignore files in Linux

Download something off GitHub and don’t need the included .gitignore files?

find . -name ".gitignore" -exec rm -f {} \;