Could you please advise how to fix the command below which removes unversioned elements from svn
rem @echo off for /f "tokens=2*" %%i in ('"c:\Program Files\TortoiseSVN\bin\svn.exe" status --no-ignore ^| find "?"') do echo %%i
option below without work path:
rem @echo off for /f "tokens=2*" %%i in ('svn.exe status --no-ignore ^| find "?"') do echo %%i
but I need to transfer all the way using svn.exe. In this case, the C: \ Program outputs are not a valid program.
source share