SVN and TortoiseSVN Log File

I am trying to create an SVN log file through TortoiseSVN if possible.

I would use the command line

svn log --verbose --xml 

but this will not work as this is a remote repo and I cannot determine username / password for it (svn is ignored)

Is there an equivalent log file generator for TortoiseSVN?

thanks

+4
source share
2 answers

The turtle displays the log by command:
right click / TortoiseSVN / Show Log

But I'm not sure what you mean by "this will not work, since this is a remote repo, and I cannot determine the username / password for it." SVN accepts username and password parameters:

 svn log --verbose --xml --username <user> --password <password> 
+4
source

Right click on the project → Show log → Statistics

It shows 4 types of charts. This is with SVN 1.7

enter image description here

-3
source

Source: https://habr.com/ru/post/1313321/


All Articles