Reputation: 1382
I have TortoiseSVN installed in my windows machine. Using the command line operation I am able to get the svn log data for a repository. but I want to open the "svn show log" popup window for the repository instead of this method. using python I wanna invoke the svn show log popup for a repository. Any help would be greatly appreciated.
Attached an image of what I am able to achieve, vs what I need. Note: Data hidden for confidentiality purposes.
Upvotes: 3
Views: 361
Reputation: 30662
You can automate TortoiseSVN UI using TortoiseProc.exe
with the /command:log
option. Here is an example:
TortoiseProc.exe /command:log /path:https://svn.apache.org/repos/asf/subversion/trunk/
Upvotes: 3