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

I want to use commandline SVN options. I use TortoiseSVN, and I run several commands and I get the following error.

'svn' is not recognized as an internal or external command

I used the command

svn checkout [-N] [--ignore-externals] [-r rev] URL PATH

I think I should add some environment variable or something else.

What should I do or can't TortoiseSVN be used from the command line?

share|improve this question
1  
I'd suggest slik subversion. And after installing just add its bin directory to your path. -bhups – bhups Oct 26 '09 at 15:24
I usually have the standard SVN installed as well as TortoiseSVN. Just add the binary location of SVN to your PATH environment variable. Using the standard SVN command line tool will be better for getting help and documentation than using any other SVN pseudo client. – Tim Oct 26 '09 at 15:27
1  
TortoiseSVN is probably the most used Windows GUI SVN client there is and it's thoroughly documented. I wouldn't call it pseudo-client just because it's not the reference command-line implementation. – Јοеу Oct 26 '09 at 15:33
6  
The latest version of TortoiseSVN (1.7.1 of this writing) has an option during installation for command line tools. It is not turned on by default but it will install the standard command line files for svn. So there is no need to install a separate subversion package like Silk anymore. – vee Nov 10 '11 at 1:55
1  
Just a quick FYI, if using Slik svn and you get that error : " 'svn' is not recognized... " you might have to open System Properties dialogue. While Slik does add the correct entry to your Path variable, you might have to click edit and 'ok' (even if you haven't made any changes) to enable the variable. At least that was my experience using Windows Vista. After I did that, Windows recognized the change in the Path and my svn command was recognized. – Jesse Jan 25 '12 at 21:39
show 3 more comments

5 Answers

up vote 79 down vote accepted

TortoiseSVN has a command-line interface, but it's different from the normal Subversion one.

You can find information about the command-line options of TortoiseSVN in the documentation: Appendix D. Automating TortoiseSVN. The main program to work with here is TortoiseProc.exe. But a note pretty much at the top there already says:

Remember that TortoiseSVN is a GUI client, and this automation guide shows you how to make the TortoiseSVN dialogs appear to collect user input. If you want to write a script which requires no input, you should use the official Subversion command line client instead.

Another option would be that you install the Subversion binaries. Slik SVN is a nice build (and doesn't require a registration like Collabnet).

share|improve this answer
Just to add to this - make sure Tortoise is on your path. Otherwise, nothing will work. – Thomas Owens Oct 26 '09 at 15:15
2  
Based on this answer, I think the best bet would be to install the actual SVN command-line client rather than learn a second command-line interface. I don't know how to do that, though. – jprete Oct 26 '09 at 15:15
1  
Thomas: By default both TortoiseSVN and Slik SVN will alter the path accordingly. – Јοеу Oct 26 '09 at 15:16
Where i check that ok button in the settings ? I couldn't find that option there . thanks – Night Walker Oct 26 '09 at 15:16
1  
CollabNet Subversion will be a good choice ? – Night Walker Oct 26 '09 at 15:18
show 3 more comments

By default TortoiseSVN always has a GUI (Graphical User Interface) associated with it. But on the installer (of version 1.7 and later) you can select the "command line client tools" option so you can call svn commands (like svn commit and svn update) from the command line.

Here's a screenshot of the "command line client tools" option in the installer, you need to make sure you select it:

How-to-install-TortoiseSvn-CommandLineTools

share|improve this answer
4  
Personally, I prefer this answer to the accepted one: no secondary installations, and full access to the standard SVN command line. – Haroldo_OK Feb 22 at 13:38
2  
Agree. This is the better answer considering the topic – Brian Colavito Mar 1 at 16:51

To use command support you should follow this steps:

  1. Define Path in Environment Variables:

    • open 'System Properties';
    • on the tab 'Advanced' click on the 'Environment Variables' button
    • in the section 'System variables' select 'Path' option and click 'edit'
    • append variable value with the path to TortoiseProc.exe file, for example:

      C:\Program Files\TortoiseSVN\bin

  2. Since you have registered TortoiseProc, you can use it in according to TortoiseSVN documentation.

    Examples:

    TortoiseProc.exe /command:commit /path:"c:\svn_wc\file1.txt*c:\svn_wc\file2.txt" /logmsg:"test log message" /closeonend:0

    TortoiseProc.exe /command:update /path:"c:\svn_wc\" /closeonend:0

    TortoiseProc.exe /command:log /path:"c:\svn_wc\file1.txt" /startrev:50 /endrev:60 /closeonend:0

P.S. To use friendly name like 'svn' instead of 'TortoiseProc', place 'svn.bat' file in the directory of 'TortoiseProc.exe'. There is an example of svn.bat:

TortoiseProc.exe %1 %2 %3
share|improve this answer

enter image description here

After selecting svn command line tools it will become like this

share|improve this answer

Steps to follow in order to checkout the project using tortoise:

-> Right click on the folder in which you want to checkout the project

-> Enter the URL of the project location For example https://companyname.com/projectname (Note this is link is case sensitive)

-> Then if the link is correct the project will get checked out in the location you provided.

share|improve this answer

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.