When using svn, and I want to check in the entire local repository, I cd into its directory and type:
svn commit -m "blah blah"
I quickly realized (the painful way) that this doesn't add new files automatically.
In order to do that, I'm performing this two step hackasstic monster:
find . | grep -v ".svn" | grep -v "ignorepattern" | xargs svn add 2>/dev/null
svn commit -m "blah blah"
Now, I'm no shell guru, but my codey sense is giving me a bad code smell.
Any suggestions would be greatly appreciated.
Thanks