svn propget svn:externals -R
Thanks, I should have expected this while google searching. ;)
The resulting externals may have other externals. This command will not list externals within externals.You should use a simple `svn status` command and filter out all lines that start with an X, to really get all externals.Windows: svn status . | findstr /R "^X"Linux/Unix: svn status . | grep -E "^X"
Thanks, I should have expected this while google searching. ;)
ReplyDeleteThe resulting externals may have other externals. This command will not list externals within externals.
ReplyDeleteYou should use a simple `svn status` command and filter out all lines that start with an X, to really get all externals.
Windows:
svn status . | findstr /R "^X"
Linux/Unix:
svn status . | grep -E "^X"