0

So I am doing a project for my school but the problem is my school computers run deep freeze. Is there any way I can use SVN and make a directory a working copy without checking out? Does anyone know how SVN remembers if a directory is a working copy? Is there some config file I can save on my network drive?

Thanks

CodyK
  • 3,426
  • 4
  • 36
  • 52
  • You should be able to check out directly to your network drive, or check it out locally, then move it up to the network drive. – Dark Falcon Jun 20 '14 at 17:15

1 Answers1

2

SVN knows if the directory is a working copy by the presence of a hidden .svn directory which contains information about the working copy.

As far as a working copy without checking out, I think what you can do is do a checkout with empty depth. So from the SVN command line:

svn checkout http://url/to/repository trunk --depth empty

This will make a working directory with nothing in it, and you can later do an update to actually pull the content.

vcsjones
  • 138,677
  • 31
  • 291
  • 286