Svn command line issue

I installed TortoiseSVN in the folder C: \ Program Files \ TortoiseSVN. In the Environment Variable window, I added the value of the variable C: \ Program Files \ TortoiseSVN \ bin to the name of the Path variable. However, when I open a command prompt window and type

svn checkout http://xxxx/xxxx --username xxxx 

I get the usual one:

 svn is not recognized as an internal or external command, operable program or batch file 

Does anyone know a hoe to solve this problem?

+4
source share
2 answers

TortoiseSVN does not have an svn executable, at least not my version.

I think it uses client libraries in the form of a DLL.

Get source SVN binaries, for example. from CollabNet . The "command line client" should be what you need.

Change TortoiseSVN also has command line options, but they are significantly different from svn . See Appendix D. TortoiseSVN Automation

+5
source

there is actually an option when installing TortoiseSVN, regardless of whether users wanted command-line features. By default, it is not installed; however, of course, you can install it as you wish.

+3
source

All Articles