I copy files from one path to a working copy of svn, comparing these 2 folders, using the command line to compare. The report will be generated after the comparison is completed without comparison. If any additional files are present on the right side, they should be removed from svn repsotiory. Therefore, I use the loop below for the loop for this file. I want to use svn delete for all right orphan files in a txt file
FOR /F "tokens=* delims= usebackq" %%x IN (%TEXT_T%) DO (
echo %%x
)
Could you tell me how I can assign each line in a txt file and how can I apply the svn delete command for this?
Any help would be appreciated
source
share