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,030
  • 21
  • 100
  • 124
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,030
  • 21
  • 100
  • 124
Lazy Badger
  • 91,325
  • 7
  • 76
  • 105
  • 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