I want to get the svn log output in xml format only for the changes that have been done since yesterday.The below mentioned code is running fine when i remove the date clause after the log command.
@echo off
set SVN=C:\Program Files\subversion-cli
set isodt=%date:~10,4%-%date:~7,2%-%date:~4,2%
"%SVN%\svn.exe" log -v {"%isodt%"-1} --xml https://svn2.worldnet.ml.com/svnrepos/imt_playground/Playground/trunk > C:\Test\svnlog.xml
ERROR: svn:When specifying working copy paths,only one target may be given
I know that i have to replace"{"%isodt%"-1}" with something else which I am clueless about. Where am i going wrong?
isodtseems wrong:echo %isodt%gives:-01-2/– Barry Feb 22 at 12:56