vote up 1 vote down star

I use TortoiseSVN normally and it works fine

Whenever I try to use svn from the command line I get an

c:\code\MyProject> svn status
svn: '.' is not a working copy

error even though its the same directory that I usually work with using TortoiseSVN.

Has anyone had this problem?

flag

68% accept rate
Why tag it not-programming-related? Its about a prominent programming tool that is malfunctioning... – George Mauer Oct 30 at 18:56

3 Answers

vote up 4 vote down check

Check that both Tortoise and SVN are the same client versions. In explorer do Right Click -> Tortoise SVN -> About. Your version info will look like this:

TortoiseSVN 1.6.5, Build 16974 - 32 Bit , 2009/08/20 08:13:46
Subversion 1.6.5,
apr 1.3.8
apr-utils 1.3.9
neon 0.28.6
OpenSSL 0.9.8k 25 Mar 2009
zlib 1.2.3

So mine is client version "Subversion 1.6.5". From the command line do:

svn --version

You'll get something like this:

svn, version 1.6.4 (r38063)
   compiled Aug  5 2009, 12:42:52

Copyright (C) 2000-2009 CollabNet.

Small version differences are usually OK. Big differences are likely to cause you a problem.

The other thing to check is that you are storing SVN information in ".svn" directories for both versions. Tortoise lets you change to use "_svn" instead of ".svn" (in Tortoise SVN -> Settings -> General). This may cause you a problem.

link|flag
Yes! that was exactly it thanks a lot! – George Mauer Oct 30 at 19:04
+1 because I never would have thought of this! – Michael Hackner Oct 30 at 19:20
vote up 1 vote down

Can you try to go one folder deeper to see if you have the same problem.

c:\code\MyProject\folder> svn status

or

c:\code\MyProject> svn status folder
link|flag
I understand how svn works...I am definitely in a working directory. No matter where I type svn status from I get that message. – George Mauer Oct 30 at 18:59
As Steve N pointed out before, verify if your svn admin folders are named .svn or _svn. If the latter you will need a custom built command line svn.exe that handles the _svn folders. – Marcel Gosselin Oct 30 at 19:06
vote up 0 vote down

That's because you have not given the full path to your svn instal when trying to run "svn". For example:

TortoiseProc.exe /command:checkout /url:"< < your repository url>>" /path:"< < your working copy path>>" /closeonend:1 /notempfile /

You are better off just using the GUI.

P.S. TortoiseProc.exe must be in your PATH.

link|flag
Thanks for the response - what does the code you posted do? I would use the GUI but sometimes the command line is faster - especially when TortoiseProc chokes up – George Mauer Oct 30 at 18:58
I have edited the command in my example to be more explicit. I hope that helps. – EToreo Oct 30 at 19:03
if you want to run the command line just download the SVN binary subversion.tigris.org/servlets/… – AndrewB Oct 30 at 19:08

Your Answer

Get an OpenID
or

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