19

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

bahrep
  • 29,961
  • 12
  • 103
  • 150
PositiveGuy
  • 46,620
  • 110
  • 305
  • 471
  • duplicate of http://stackoverflow.com/questions/1625406/using-tortoisesvn-via-the-command-line – drzaus Mar 10 '14 at 15:08

2 Answers2

22

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

Joe
  • 3,827
  • 1
  • 25
  • 37
3

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

sbi
  • 219,715
  • 46
  • 258
  • 445
  • ok, I tried to cd to repositories and also repositories\repoName and tried to run that mv .... command. I must be missing something here. – PositiveGuy Feb 25 '10 at 16:32
  • Did you look in your working copy or in the _repository_? (The latter is on the _server_, the former on the client.) – sbi Feb 25 '10 at 16:55
  • How to use `svn update [-r rev] [-depth ARG] [--ignore-externals] PATH` – Prithiv Dec 29 '16 at 06:00