Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to use the SVN command line with TortoiseSVN

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).

like image 500
PositiveGuy Avatar asked Feb 25 '10 16:02

PositiveGuy


People also ask

How do I access my TortoiseSVN repository?

To use TortoiseSVN (or any other Subversion client), you need a place where your repositories are located. You can either store your repositories locally and access them using the file:// protocol or you can place them on a server and access them with the http:// or svn:// protocols.

Does TortoiseSVN include Subversion?

TortoiseSVN comes with everything you need to access a repository. Only if you want to set up a server then you will need the Subversion package.


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

like image 173
Joe Avatar answered Oct 26 '22 16:10

Joe


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

like image 37
sbi Avatar answered Oct 26 '22 16:10

sbi