Is there any command line trick to get SVN to add in all the missing files from svn stat interactively?
svn stat
For example, something like:
s
The following line on a Unix shell adds all missing files.
svn status | grep '?' | sed 's/^.* /svn add /' | bash