SyntaxFix
Write A Post
Hire A Developer
Questions
I like these commands as they use svn status to find the new or missing files, which respects files that are ignored.
svn status
svn add $( svn status | sed -e '/^?/!d' -e 's/^?//' ) svn rm $( svn status | sed -e '/^!/!d' -e 's/^!//' )