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?

link|improve this question

57% accept rate
Your isodt seems wrong: echo %isodt% gives: -01-2/ – Barry Feb 22 at 12:56
I am sorry but for me the output shows as: "2012-22-02" – dibya Feb 22 at 13:03
One less problem then :) Though it definitely is incorrect on my machine (so that's a locale problem no doubt). – Barry Feb 22 at 13:06
log -r {"%isodt%"-1}. But this spec is totally wrong for "only today's revisions" by design, not syntax – Lazy Badger Feb 22 at 15:31
BTW, 2012-22-02 is incorrect date spec for log: only YYYY-MM-DD accepted, not YYYY-DD-MM – Lazy Badger Feb 22 at 15:35
show 2 more comments
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.