How to use "svn export" command to get a single file from the repository?

Viewed 117820

How can I use the svn export command to get a single file from the repository?

I've tried this:

svn export e:\repositories\process\test.txt c:\

But I get this error:

svn: e:\repositories\process is not a working copy

5 Answers

Use SVN repository URL to export file to Local path.

     svn export [-r rev] [--ignore-externals] URL Export_PATH
     svn export http://<path>/test.txt C:\Temp-Folder
Related