unsubscribe

2012-03-09 Thread Rares Ispas
unsubscribe

Feature request - SVN command to clean a working copy of all unversioned and ignored files and directories

2012-03-09 Thread Simon Dean
Hi Are there any plans to add a command to SVN that cleans a working copy or path of all unversioned and/or ignored files and directories? This is a very common need for automated Continuous Integration builds where a working copy is reused for multiple runs of the same build. Currently

Re: Feature request - SVN command to clean a working copy of all unversioned and ignored files and directories

2012-03-09 Thread Giulio Troccoli
On 09/03/12 13:56, Simon Dean wrote: Hi Are there any plans to add a command to SVN that cleans a working copy or path of all unversioned and/or ignored files and directories? This is a very common need for automated Continuous Integration builds where a working copy is reused for multiple

RE: Feature request - SVN command to clean a working copy of all unversioned and ignored files and directories

2012-03-09 Thread Simon Dean
From: Giulio Troccoli [mailto:giulio.trocc...@mediatelgroup.co.uk] Sorry, but to me this has got nothing to do with Subversion. Your CI tool is should clean up itself. Having said that, if someone wants to implement such feature I don't think I would have anything against it. But I doubt

RE: Feature request - SVN command to clean a working copy of all unversioned and ignored files and directories

2012-03-09 Thread Simon Dean
From: Bob Archer [mailto:bob.arc...@amsi.com] FYI: If you are on windows the TortoiseSVN client's Clean up function allows you to delete unversioned and ignored files if you want. Also, it allows you to revert all changes when you clean up as well. BOb TortoiseSVN feature is very

Re: Feature request - SVN command to clean a working copy of all unversioned and ignored files and directories

2012-03-09 Thread Giulio Troccoli
On 09/03/12 14:35, Simon Dean wrote: From: Giulio Troccoli [mailto:giulio.trocc...@mediatelgroup.co.uk] Sorry, but to me this has got nothing to do with Subversion. Your CI tool is should clean up itself. Having said that, if someone wants to implement such feature I don't think I would have

RE: Feature request - SVN command to clean a working copy of all unversioned and ignored files and directories

2012-03-09 Thread Simon Dean
From: Giulio Troccoli [mailto:giulio.trocc...@mediatelgroup.co.uk] Why would the CI implement a different solution for each VCS? Those, I understand, are files created during the build process, they have got nothing to do with SVN or any other VCS. And it's not a SVN specific implementation

Re: Feature request - SVN command to clean a working copy of all unversioned and ignored files and directories

2012-03-09 Thread Giulio Troccoli
On 09/03/12 15:03, Simon Dean wrote: From: Giulio Troccoli [mailto:giulio.trocc...@mediatelgroup.co.uk] Why would the CI implement a different solution for each VCS? Those, I understand, are files created during the build process, they have got nothing to do with SVN or any other VCS. And

RE: Feature request - SVN command to clean a working copy of all unversioned and ignored files and directories

2012-03-09 Thread Simon Dean
-Original Message- From: Giulio Troccoli [mailto:giulio.trocc...@mediatelgroup.co.uk] So the CI would rely on another piece of software, SVN in this case, to know what it has created in terms of files. Well, it doesn't seem right to me. With TortoiseSVN providing this functionality

Re: Feature request - SVN command to clean a working copy of all unversioned and ignored files and directories

2012-03-09 Thread Andreas Krey
On Fri, 09 Mar 2012 14:10:39 +, Giulio Troccoli wrote: ... Sorry, but to me this has got nothing to do with Subversion. 'course it does. It knows which files are to be ignored, and thus can be savely thrown away, and it does know which files are not under version control, and thus should be

Re: Feature request - SVN command to clean a working copy of all unversioned and ignored files and directories

2012-03-09 Thread Stefan Sperling
On Fri, Mar 09, 2012 at 01:56:34PM +, Simon Dean wrote: Hi Are there any plans to add a command to SVN that cleans a working copy or path of all unversioned and/or ignored files and directories? There is a related open feature request in our issue tracker:

Re: Feature request - SVN command to clean a working copy of all unversioned and ignored files and directories

2012-03-09 Thread Geoff Hoffman
On Fri, Mar 9, 2012 at 10:24 AM, Stefan Sperling s...@elego.de wrote: On Fri, Mar 09, 2012 at 01:56:34PM +, Simon Dean wrote: Hi Are there any plans to add a command to SVN that cleans a working copy or path of all unversioned and/or ignored files and directories? There is a related

Re: Feature request - SVN command to clean a working copy of all unversioned and ignored files and directories

2012-03-09 Thread Les Mikesell
2012/3/9 Giulio Troccoli giulio.trocc...@mediatelgroup.co.uk: But maybe I'm missing something? A CI implementation would have to implement it specifically each VCS as it would have to call the VCS to found out what files/directories are unversioned and ignored. So the CI would rely on

Building Subversion For Windows

2012-03-09 Thread Brad Lemings
Hello all, I'm trying to build Subversion on Windows. When I run the gen-make.py script, I get this: python gen-make.py --release -t vcproj --vsnet-version=2008 BDB not found, BDB fs will not be built Generating for Visual Studio 2008 Could not detect Ruby version, assuming 1.8. Ruby

Re: Feature request - SVN command to clean a working copy of all unversioned and ignored files and directories

2012-03-09 Thread Stefan Sperling
On Fri, Mar 09, 2012 at 10:45:13AM -0700, Geoff Hoffman wrote: A couple of things I find interesting... the bug tracker you linked to is 3 years old and still on tigris.org. Assuming that is still the valid place for tracking subversion features bugs? The issue tracker has not been migrated

Re: Feature request - SVN command to clean a working copy of all unversioned and ignored files and directories

2012-03-09 Thread Geoff Hoffman
On Fri, Mar 9, 2012 at 11:34 AM, Stefan Sperling s...@elego.de wrote: On Fri, Mar 09, 2012 at 10:45:13AM -0700, Geoff Hoffman wrote: A couple of things I find interesting... the bug tracker you linked to is 3 years old and still on tigris.org. Assuming that is still the valid place for

RE: Feature request - SVN command to clean a working copy of all unversioned and ignored files and directories

2012-03-09 Thread Bob Archer
On Fri, Mar 09, 2012 at 10:45:13AM -0700, Geoff Hoffman wrote: A couple of things I find interesting... the bug tracker you linked to is 3 years old and still on tigris.org. Assuming that is still the valid place for tracking subversion features bugs? The issue tracker has not been

Re: Feature request - SVN command to clean a working copy of all unversioned and ignored files and directories

2012-03-09 Thread Kuno Meyer
Another unconventional way of accomplishing this would be to use Bazaar's clean-tree command. With the bzr-svn plugin installed, you should be able to directly operate on SVN working trees: bzr clean-tree --ignored --unknown --detritus --force

Re: Feature request - SVN command to clean a working copy of all unversioned and ignored files and directories

2012-03-09 Thread Johan Corveleyn
On Fri, Mar 9, 2012 at 2:56 PM, Simon Dean simon.d...@moneysupermarket.com wrote: Hi Are there any plans to add a command to SVN that cleans a working copy or path of all unversioned and/or ignored files and directories? This is a very common need for automated Continuous Integration builds

Re: svn on OSX 10.7.3 can't find CA certificates

2012-03-09 Thread Daniel Shahaf
Zachary, Saw your other emails. If you'd like help from this mailing list it's best to ask us a self-contained question. Forwarding random threads and raw transcripts to this list will get you nowhere. Daniel Greg Stein wrote on Thu, Mar 08, 2012 at 20:26:26 +: On Thu, Mar 08, 2012 at

Re: Feature request - SVN command to clean a working copy of all unversioned and ignored files and directories

2012-03-09 Thread Andreas Krey
On Fri, 09 Mar 2012 11:53:47 +, Les Mikesell wrote: ... So the CI would rely on another piece of software, SVN in this case, to know what it has created in terms of files. Well, it doesn't seem right to me. So how would you propose doing this across different VCS? I don't see how

RE: Building Subversion For Windows

2012-03-09 Thread Bert Huijben
Hi, If you are using Subversion 1.7.3 for your test, please upgrade to 1.7.4. Subversion 1.7.3 always tries to build with apache httpd. This issue was fixed in 1.7.4. Bert From: Brad Lemings [mailto:b...@rebit.com] Sent: vrijdag 9 maart 2012 19:21