简体   繁体   中英

Individual file checkouts in the latest version of Apache Subversion 1.8.8

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.

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

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

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM