Is there a way to open (visual) revision graph of a project only using command line?
Asked
Active
Viewed 182 times
1 Answers
1
Sure!
The command would look like TortoiseProc.exe /command:revisiongraph /path:<path-to-checkout>
You should consult automating TortoiseSVN for an understanding of the TortoiseSVN CLI.

Elliott Beach
- 10,459
- 9
- 28
- 41
-
This is probably a different question but I wrote multiple commands -as you answered- in a batch file but just the first one is fired. weird – Asqan Oct 29 '18 at 20:43
-
putting "start" for each line has solved the problem by the way. – Asqan Oct 29 '18 at 20:54
-
1That would happen because TortoiseProc only exits when the window is closed. `start` allows execution to proceed in your script. – Elliott Beach Oct 30 '18 at 16:02