0

Is it possible to check out a single file from an SVN repository using SVNKit?

I have code to checkout a complete directory. But I need only a specific file to be checked out.

Peter Mortensen
  • 30,738
  • 21
  • 105
  • 131
Java Learner
  • 87
  • 1
  • 2
  • 8

1 Answers1

0

You can't check out a single file by any SVN client. You can get an unversioned file from a repository, using cat (redirected to file) or export.

Peter Mortensen
  • 30,738
  • 21
  • 105
  • 131
Lazy Badger
  • 94,711
  • 9
  • 78
  • 110
  • You *can* check out a single file from Subversion. [It is done in two steps. First checkout an empty directory and then update a single file](http://stackoverflow.com/questions/122107/checkout-one-file-from-subversion/122291#122291). – Peter Mortensen Dec 09 '13 at 13:16