Re: Missing update-report close tag on CheckOut

2014-05-05 Thread David Chapman
On 5/4/2014 10:57 PM, Lloyd wrote: Hi We are using VisualSVN server version 2.1.4 (svn server version 1.6.13) When I try to checkout our project it throws an error message svn: E175009: Missing update-report close tag. What could be the reason for this error message? Can something could be

Hope subversion server can fold each 1000 revision into a zipped or compacted file.

2014-05-05 Thread Yonggang Luo
For really big repository, there is too much small files, that's hurt for backup and checksums and copy/move operations. -- 此致 礼 罗勇刚 Yours sincerely, Yonggang Luo

AW: Hope subversion server can fold each 1000 revision into a zipped or compacted file.

2014-05-05 Thread Markus Schaber
Hi, Yonggang Luo, I'm assuming you're using FSFS based repositories, as BDB repositories usually won't suffer from this problem. check the documentation about repository packing: http://svnbook.red-bean.com/en/1.8/svn.reposadmin.maint.html#svn.reposadmin.maint.diskspace.fsfspacking Best

Commiting objects named .svn Was: .svn directory - safe to add files in .svn or .svn/tmp?

2014-05-05 Thread David Balažic
Ryan Schmidt wrote: On May 4, 2014, at 15:46, David Balažic wrote: Branko Čibej brane at wandisco.com writes: It's not a question of SVN being fragile or not. The .svn/ directory is private to Subversion and you're not allowed to fiddle with it. Servus Branko, related

Re: svn list support for listing directory entries only

2014-05-05 Thread Dan Ellis
The depth parameter is used in many places, not just in svn list; whatever enhancement you come up with must at least fit the other uses. Depth was invented to describe sparse working copies, and was only later adapted to other commands. For sparse working copies, depth=dirs probably doesn't

RE: svn list support for listing directory entries only

2014-05-05 Thread Bert Huijben
The ‘list’ command is really only implemented at a high level, by retrieving the entries of each directory at a time and then filtering the results. There is nothing you can do to really optimize this for directories without changing the ra layer and wire protocol for svn:// and http://.