Sometimes I include many files in different directories in my project. For now I am adding all files one by one to my project before commit. Is there any Linux terminal comm
An approach using a Perl one-liner to add all files shown with a question mark by "svn st" would be:
svn st | perl -ne 'print "$1\n" if /^\?\s+(.*)/' | xargs svn add
This should also work with space characters in file names.