Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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:

http://jacqueschirag.wordpress.com/2007/07/22/changing-revision-property-in-subversion-with-tortoisesvn/

but I'm not seeing the same directory structure under Program Files (x86)\VisualSVN Server (obviously).

share|improve this question

3 Answers

up vote 7 down vote accepted

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

share|improve this answer
1  
TortoiseProc.exe is a GUI program and the "output" will be windows with some information in them, not text to standard output. – Peter Mortensen Feb 24 '12 at 10:14

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

share|improve this answer
3  
This, but I would recommend downloading the SlikSvn version -- well produced, easy to download: sliksvn.com/en/download – Michael Greene Feb 25 '10 at 16:12
I second the recommendation to SlikSVN. No sign-up required for them. – sbi Feb 25 '10 at 16:53

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

share|improve this answer
ok, I tried to cd to repositories and also repositories\repoName and tried to run that mv .... command. I must be missing something here. – CoffeeAddict 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

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.