0

Can we do individual file checkouts in the latest version of Apache Subversion 1.8.8.. Is there a locking functionality for individual files in the latest version. Please advise.

2 Answers2

1

svn has had file locking for a while...

see the answer to this post - Force user to lock file in SVN before editing

svn also allows you to checkout a subset of the files in any path, called sparse checkout

http://svnbook.red-bean.com/en/1.7/svn.advanced.sparsedirs.html

Community
  • 1
  • 1
bkr
  • 1,444
  • 1
  • 11
  • 22
  • Thank you bkr for the information. With the individual file checkouts called sparse checkouts can be done only on cammand line right. we could not do it from the actual repository – user3408878 Mar 12 '14 at 05:16
  • I'm not sure I understand what you're asking... You can use a tool like TortoiseSVN ( see http://tortoisesvn.net/docs/release/TortoiseSVN_en/tsvn-dug-checkout.html ) assuming you're on windows if you want a GUI interface, but I get the feeling I'm missing what you're asking. – bkr Mar 12 '14 at 05:19
0

Checking out single file is possible . Through command line:

  1. First checkout the parent directory with --depth empty
  2. Update the directory with the file you want.

Please refer the link

Checkout one file from Subversion

http://subversion.tigris.org/issues/show_bug.cgi?id=823

Locking of file is also possible in SVN .

Hope this helps

Regards

Jyotsna

Community
  • 1
  • 1
Jyotsna Saroha
  • 678
  • 6
  • 13