You can use this command to list all paths for files without versions:
svn status | awk '/^?/ {print $2}'
The first part will do svn status , and then redirect the output to AWK , which will make a simple "first character should be" filter? ", then it will print the second parameter" file path ".
svn status will never print ignored files. You can add a file or path by adding this path using
svn propset svn:ignore "PATH OR PATERN"
user2710797 Sep 25 '15 at 11:00 2015-09-25 11:00
source share