Re: Does svn merge --reintegrate ^URL syntax really work ?

2010-09-10 Thread LiuYan 刘研
Thank you Erik, 1. I think I got the cause: I use Subversion in windows system, it's a little different to linux/unix system: The ^ character is a special character in command prompt window or batch file. the ^ character and it's following characters MUST be quoted:

Re: Does svn merge --reintegrate ^URL syntax really work ?

2010-09-10 Thread Daniel Shahaf
LiuYan 刘研 wrote on Fri, Sep 10, 2010 at 00:19:54 -0700: Thank you Erik, 1. I think I got the cause: I use Subversion in windows system, it's a little different to linux/unix system: The ^ character is a special character in command prompt window or batch file. the ^ character and it's

Auto props

2010-09-10 Thread Vojáček Aleš
Hi all, Is it possible to set up enable-auto-props = yes and eon styles on server side, or this is possible only on client side? I want to set up this on server side, because I do not want to change configs on all clients and I want to be sure, that all clients will set up autoprops correctly

Re: Update and Status in large working copy causes Windows to hang

2010-09-10 Thread Johan Corveleyn
On Fri, Sep 10, 2010 at 10:14 AM, ullrich.j...@elektrobit.com wrote: Hi. Now I'm getting bitten by this. -Original Message- From: Justin Johnson [mailto:jus...@honesthacker.com] Sent: Monday, October 26, 2009 9:39 PM Subject: Re: Update and Status in large working copy

Re: Auto props

2010-09-10 Thread Johan Corveleyn
2010/9/10 Vojáček Aleš avoja...@fblgroup.cz: Hi all, Is it possible to set up enable-auto-props = yes and eon styles on server side, or this is possible only on client side? I want to set up this on server side, because I do not want to change configs on all clients and I want to be sure,

Re: Checkout exclude pattern

2010-09-10 Thread Itamar O
On Fri, Sep 10, 2010 at 2:05 PM, Daniel Shahaf d...@daniel.shahaf.namewrote: So, you want a way to do svn up --set-depth=exclude $file at checkout time? I think the desired behavior is not related to set-depth. something like: svn [up,co] --exclude pattern (reg-exp?) so you could

Re: Auto props

2010-09-10 Thread Johan Corveleyn
Please reply to the list as well, and not only to me (usually by using the Reply All button). Also, please don't top-post on this list (i.e. put your reply below the text you're replying to, not above it). Now, see below :). 2010/9/10 Vojáček Aleš avoja...@fblgroup.cz: Thank you for fast reply.

RE: svn:mergeinfo property question...

2010-09-10 Thread Bob Archer
I recently upgraded a subversion server from 1.4.x to 1.6.6 as the old server died an unrecoverable death the 1.6.6 server was loaded via backups from dump files. Now I am getting ready to re-integrate some branches back to their trunk, and decided to try out the svn merge tracking

Re: svn:mergeinfo property question...

2010-09-10 Thread BRM
- Original Message From: Bob Archer bob.arc...@amsi.com frankly... 1.5.1 has many merging bugs in it. I would suggest you upgrade the client to the last 1.5 release or the current 1.6 release. As much as I would like to be able to use a 1.6 client on the system - I can only get

Re: Checkout exclude pattern

2010-09-10 Thread Autumn
Cool, that hadn't occured to me. That could mean that no structural changes are required to the .svn format -- only a code change to the checkout logic to preemptively create the exclude entries. I'm not sure how it would handle the case where someone else adds new files which match my

Hook Script Examples

2010-09-10 Thread BRM
My old subversion server had a hookscript to deny commits unless there was a log message. I'd like to setup the same functionality on the new subversion server too. I already got my hook-scripts in place, but... In the process, I came across the following README files:

RES: Checkout exclude pattern

2010-09-10 Thread Luiz Guilherme Kimel
I'm also +1 to this feature. I understand that svn_depth_exclude should be associated to a checked out folder and set differently to other folders to build local working copy custom structure. A svn_depth_exclude_pattern set on checkout could help deciding which value use on svn_depth_exclude

Re: Checkout exclude pattern

2010-09-10 Thread Daniel Shahaf
If the 'checkout' logic can tell the server to not send some files, then so can the 'update' logic. It's just a matter of making it remember to do that. (i.e., having the exclude pattern persist somewhere and used by the 'update' command) Autumn wrote on Fri, Sep 10, 2010 at 08:27:34 -0700:

how to browse older revisions?

2010-09-10 Thread JWalker
Hi, Is it possible to browse (in Firefox or MS IE) older revisions (not HEAD)? Ivan

Re: how to browse older revisions?

2010-09-10 Thread Les Mikesell
On 9/10/2010 1:47 PM, JWalker wrote: Hi, Is it possible to browse (in Firefox or MS IE) older revisions (not HEAD)? The easy approach is to install viewvc for browser viewing and navigation. http://viewvc.org/ -- Les Mikesell lesmikes...@gmail.com

Re: how to browse older revisions?

2010-09-10 Thread Weirdan
On Fri, Sep 10, 2010 at 9:57 PM, Andy Levy andy.l...@gmail.com wrote: I think there's a way with the latest version (1.6.x), but I can't find the syntax. https://server/svn/project/trunk/?p=revision number -- Best regards, Bruce Weirdan mailto:

Re: Repository Directory Tree

2010-09-10 Thread Nico Kadel-Garcia
On Fri, Sep 10, 2010 at 1:42 AM, Lorenz loren...@yahoo.com wrote: Giulio Troccoli wrote: [...] - check out the whole thing (it might be too big but maybe not)     svn checkout file:///var/svn ~/tmp This will create a new directory called tmp in your home directory whit the whole of your

Re: Repository Directory Tree

2010-09-10 Thread Nico Kadel-Garcia
On Fri, Sep 10, 2010 at 5:57 PM, Nico Kadel-Garcia nka...@gmail.com wrote: On Fri, Sep 10, 2010 at 1:42 AM, Lorenz loren...@yahoo.com wrote: Giulio Troccoli wrote: [...] - check out the whole thing (it might be too big but maybe not)     svn checkout file:///var/svn ~/tmp This will create a new

Re: Hook Script Examples

2010-09-10 Thread Ryan Schmidt
On Sep 10, 2010, at 10:50, BRM wrote: My old subversion server had a hookscript to deny commits unless there was a log message. I'd like to setup the same functionality on the new subversion server too. I already got my hook-scripts in place, but... In the process, I came across the