I am using the Repository Browser Torstoise SVN and I need to copy a whole tree of latest revision file name/revision/date/size information to MS Word. Is there an easy way to copy this information?
I can see this information and when I select and right click I am not seeing any copy to clipboard this information. There is just a copy URL to clipboard?
If you use the svn command line ls command and pipe the results to a file this is super easy.
svn ls -Rv http://path.to.repo > output.txt
the ‘R’ argument is for recursive and the ‘v’ is verbose.