I’ve installed TortoiseSVN in C > Program Files > TortoiseSVN. I wanted to test it with command prompt, so I opened cmd and cd to the bin folder inside the TortoisSVN installation folder.
I tried svn help in the command prompt and it worked fine.
Then I tried svn status and it gave me this error.
svn: warning: W155007: 'C:\Program Files\TortoiseSVN\bin' is not a working copy
Can someone try those 2 commands and tell me if they get similar results?
Your error:
Says that the directory
C:\Program Files\TortoiseSVN\binis not a working copy of a SVN repository. A working copy contains a hidden.svn/folder with metadata, which is read bysvn. The message is absolutely correct and isn’t an error but a warning.This happens because
svn helpdoesn’t require a working copy of a SVN repository to run properly. It just shows you the help text.svn status, on the other hand, needs a Subversion repository.