How to use the SVN command line with TortoiseSVN

Viewed 43735

How do I use the command line for SVN when SVN is installed by Tortoise?

I'm trying to invoke some commands found in Changing a revision property in Subversion, but I'm not seeing the same directory structure under Program Files (x86)\VisualSVN Server (obviously).

2 Answers

That page mostly references setting up SVN hooks on the server, but you can call SVN functions through Tortoise like the following:

<Path to TortoiseSVN>\bin\TortoiseProc.exe /command:<SVNCommand> <Parameters>

For example:

C:\Program Files\TortoiseSVN\bin\TortoiseProc.exe /command:log /path:"c:\MyRepo\"

Reference here: Automating TortoiseSVN

The directory structure is per repository. You have to look at your repository's folder, not the program folder.

Related