How can i use svn export command to get a single file from the repository.
I try this
svn export e:\repositories\process\test.txt c:\
but I get this:
svn: e:\repositories\process is not a working copy
How can i use svn export command to get a single file from the repository.
I try this
svn export e:\repositories\process\test.txt c:\
but I get this:
svn: e:\repositories\process is not a working copy
Guessing from your directory name, you are trying to access the repository on the local filesystem. You still need to use URL syntax to access it:
svn export file:///e:/repositories/process/test.txt c:\test.txt