I'm new to using VisualSVN, and I wanted to know if you can get a specific file that has been added to source control in an upper level directory without have to update the entire directory (through windows explorer). For instance, if a co-worker adds a config file to the root directory of a solution, how do I get that specific file for my machine without getting latest/updating the entire solution folder?
Asked
Active
Viewed 105 times
2
-
What client are you using? VisualSVN is just a wrapper around SVN server, so client-side usage should be the same – Pekka Jan 10 '11 at 16:06
-
Underneath, it's using TortoiseSVN. – gleasonomicon Jan 10 '11 at 16:41
1 Answers
1
You can do svn export
using direct link to file with (e.g. svn export http://svn.example.com/svn/repo1/config.xml
). This operation could be done using Tortoise SVN from Windows Explorer context menu. But keep in mind, that svn export
is just a way to download file, wtihout any version control on it.
You also can do a sparse checkout (see this answer).

Community
- 1
- 1

sergey.raevskiy
- 56
- 4