The batch file i intend to use should actually produce the svnlog in XML format in my C:\ drive.

But it shows an error that:

The filename,directory name, or volume label syntax is incorrect

My code:

     @echo off
     cls
     set SOURCE=https://xxxx//repos/trunk
     set SVN=C:\Program Files\subversion-cli
     set Des=C:\
    "%SVN%\svn.exe"
    /command:svn log --xml > %Des%svnlog.xml /path:"%SOURCE%" /closeonend:2
     pause

Require some guidance. Probably a rectification of my script as I am a beginner in scripting.

link|improve this question

57% accept rate
/command:svn is a part from another song - TSVN amd it's TortoiseProc backend – Lazy Badger Feb 14 at 16:01
feedback

2 Answers

up vote 0 down vote accepted
svn log --xml %SOURCE% > %Des%svnlog.xml

OR

TortoiseProc /command:log /path:"%SOURCE%" /outfile:%Des%svnlog.xml

(TBT!)

link|improve this answer
feedback
     @echo off
     cls
     set SVN=C:\Program Files\subversion-cli
    "%SVN%\svn.exe"/command:svn log -v --xml  https://xxxx/trunk > svnlog.xml
     pause

I have changed the code a bit but still the error comes as:

"Unknown command: '/command:svn'
link|improve this answer
Shit!!! svn haven't /command option. USE svn log COMMAND AS IS. Read svn help svn help log – Lazy Badger Feb 15 at 11:14
Thanks Badger i used the below code and it worked: "%SVN%\svn.exe" log --xml xxxx/trunk > :\svnlog.xml . – dibya Feb 15 at 12:28
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.