I need to export SVN log history to xml file in windows

I tried exporting the SVN history log on an Ubuntu machine using the following command, and it worked perfectly. I used Rabbit SVN.

svn log -v --xml SVNPATH > /home/admin/Desktop/XXX.xml 

I also need to do the same in a Windows machine, and I use the SVN tortoise. Can anyone help me on this.

+4
source share
1 answer

You cannot do this with TortoiseSVN.

You can automate Tortoise to get logdialog or other things ( see here for more details ), but you cannot export the log to XML.

To do this, you need a command line (which you do not need to install, you can use a portable one).

+3
source

All Articles