tags:

views:

56

answers:

1

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

+1  A: 

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
jason.rickman