I can't figure out how to use the command line for SVN when SVN is installed by Tortoise. I'm trying to invoke some commands found here:
but I'm not seeing the same directory structure under Program Files (x86)\VisualSVN Server (obviously).
I can't figure out how to use the command line for SVN when SVN is installed by Tortoise. I'm trying to invoke some commands found here:
but I'm not seeing the same directory structure under Program Files (x86)\VisualSVN Server (obviously).
The directory structure is per repository. You have to look at your repository's folder, not the program folder.
To my knowledge TortoiseSVN does not come with a command line tool. Install plain command line svn implementation eg. http://www.collab.net/downloads/subversion/ - it was previously just Subversion ;)
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