0

Is there a way to open (visual) revision graph of a project only using command line?

enter image description here

Asqan
  • 4,319
  • 11
  • 61
  • 100

1 Answers1

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
  • 1
    That 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