Migrations with Subversion

2010-03-29 Thread Juan Jesús Cremades Monserrat
Hi! I’m administrating a subversion server 1.4.2 version and Tortoise Version 1.5.4 and I’m thinking to migrate to 1.6.9 in a x86_64 machine. Could I have any problem? It’s important for me to avoid any conflict. Thank you very much!

RE: [Help] Choose Subversion for Java Application

2010-03-29 Thread Cooke, Mark
On Mar 28, 2010, at 22:43, Moch Firman N wrote: Thanks. I have not yet installed any package of subversion, please in advise which version should I install with free license of course ? You should install the latest version of Subversion, currently 1.6.9, and familiarize

Re: Migrations with Subversion

2010-03-29 Thread Andy Levy
2010/3/29 Juan Jesús Cremades Monserrat jjcrema...@pentec.es: Hi! I’m administrating a subversion server  1.4.2 version and Tortoise Version 1.5.4 and I’m thinking to migrate to 1.6.9 in a x86_64 machine. Could I have any problem? It’s important for me to avoid any conflict. Thank you

Re: [Help] Choose Subversion for Java Application

2010-03-29 Thread Les Mikesell
Cooke, Mark wrote: On Mar 28, 2010, at 22:43, Moch Firman N wrote: Thanks. I have not yet installed any package of subversion, please in advise which version should I install with free license of course ? You should install the latest version of Subversion, currently 1.6.9, and familiarize

Re: Problem creating new repo

2010-03-29 Thread Campbell Allan
On Monday 29 Mar 2010, Randi Hillerøe wrote: For 4 hours I have tried to solve this problem but seems like very few had it before. I just installed subversion on a QNAP T410, NAS, which completed all fine however it went wrong when I tried to create the first repository. I use the command:

command line to remove a property

2010-03-29 Thread Bob Archer
So, Any of you command line gurus able to give me a command line that will delete the svn:mime-type property from any file with a .sql extension in my project folder? I'm on windows but do have msysgit installed so grep and some other unix commands are available. BOb

svn copy not updating Last Changed Rev

2010-03-29 Thread Jon DeVree
I noticed that when you svn copy a directory (like for branching and tagging) the 'Last Changed Rev' in svn info only moves forward on the root of the copy and not every file. The most recent revision in svn log will show up as the copy revision though. Shouldn't the 'Last Changed Rev' on a path

RE: svn copy not updating Last Changed Rev

2010-03-29 Thread Bob Archer
Why would you expect the last changed rev of a file to change just because you coppied it to another path? You didn't actually change that file right? BOb -Original Message- From: Jon DeVree [mailto:jadev...@mtu.edu] Sent: Monday, March 29, 2010 1:56 PM To:

Re: command line to remove a property

2010-03-29 Thread Andy Levy
On Mon, Mar 29, 2010 at 13:49, Bob Archer bob.arc...@amsi.com wrote: So, Any of you command line gurus able to give me a command line that will delete the svn:mime-type property from any file with a .sql extension in my project folder? I'm on windows but do have msysgit installed so grep

Re: svn copy not updating Last Changed Rev

2010-03-29 Thread Jon DeVree
On Mon, Mar 29, 2010 at 14:02:06 -0400, Bob Archer wrote: Why would you expect the last changed rev of a file to change just because you coppied it to another path? You didn't actually change that file right? First, the value changes if you use svn copy locally and commit the results. So I

RE: command line to remove a property

2010-03-29 Thread Bob Archer
This will take care of the recursion: for /R %f in (*.sql) do svn propdel svn:mime-type %f -- Stein Brilliant... thanks. This seems to do the trick. BOb

RE: command line to remove a property

2010-03-29 Thread Bert Huijben
-Original Message- From: Stein Somers [mailto:ssom...@opnet.com] Sent: maandag 29 maart 2010 21:06 To: users@subversion.apache.org Subject: Re: command line to remove a property This will take care of the recursion: for /R %f in (*.sql) do svn propdel svn:mime-type %f $

RE: ignore local change

2010-03-29 Thread Ben Kim
Thanks Bob and David, it's helpful. I'll look whether I can customize diff command. Regards, Ben Kim On Thu, 25 Mar 2010, Bob Archer wrote: BTW: TortoiseSVN does implement the ignore change list idea. Although, I would rather go with checking in a template and then using build scripts or

Building for Win32 - tests fail

2010-03-29 Thread David Darj
Hi I now started building subversion 1.6.9 for Win32, starting from the vc6-build.bat.in template. Everything looks fine when building (after a very few tweaks) and running the test using file:// and svn:// protocol looks good (for both fsfs and bdb-backend). But when running against

Re: svn copy not updating Last Changed Rev

2010-03-29 Thread Daniel Shahaf
Jon DeVree wrote on Mon, 29 Mar 2010 at 14:19 -0400: On Mon, Mar 29, 2010 at 14:02:06 -0400, Bob Archer wrote: Why would you expect the last changed rev of a file to change just because you coppied it to another path? You didn't actually change that file right? First, the value changes

Re: Problem creating new repo

2010-03-29 Thread Tyler Roscoe
Keep replies on list if you want help. On Mon, Mar 29, 2010 at 07:32:46PM +0100, Randi Hillerøe wrote: No other error message... I've searched a lot to find some way to get just a bit more info, but I didn't find anything :S strace, isn't that some linux stuff? Or is it possible to install on

Re: Problem creating new repo

2010-03-29 Thread Ryan Schmidt
On Mar 29, 2010, at 15:55, Tyler Roscoe wrote: On Mon, Mar 29, 2010 at 07:32:46PM +0100, Randi Hillerøe wrote: No other error message... I've searched a lot to find some way to get just a bit more info, but I didn't find anything :S strace, isn't that some linux stuff? Or is it possible to

RE: svn copy not updating Last Changed Rev

2010-03-29 Thread Bob Archer
On Mon, Mar 29, 2010 at 23:53:43 +0300, Daniel Shahaf wrote: [[[ % svn up At revision 1. % svnversion 1 % svn cp -q iota iota2 % svn ci -q -m r2: add iota2 % svn cp -q ^/trunk/iota ^/trunk/iota3 -m r3: add iota3 % svn up -q %

Re: Can checkout and commit but NOT diff or display logs for files or dirs

2010-03-29 Thread Johan Corveleyn
2010/3/29 Björn Blissing bjorn.bliss...@vti.se: Hi, I set up a repo on my computer. I run the daemon with the following options: svnserve.exe -d -r d:\svndata I can then check out and commit to the repo using svn co svn://localhost/project/trunk project , BUT I can not do any diff or show

Re: svn copy not updating Last Changed Rev

2010-03-29 Thread Jon DeVree
On Mon, Mar 29, 2010 at 18:15:19 -0400, Bob Archer wrote: You don't show what your pwd is when you do these commands. but I think the default range is 1:BASE if you are in a working copy. Does the log change if you use: svn log -r HEAD :///tmp/svn-repo/branches/mine/fil Good question, I

Re: Junior developers

2010-03-29 Thread Tucker
On Wed, Feb 24, 2010 at 3:10 AM, Alan Barrett a...@cequrux.com wrote: On Wed, 17 Feb 2010, dcz wrote: Here is what I'm trying to do : some user (let's call them junior developer) should require their commit to be authorized by other (senior developer) before they would actually be committed.

Re: Problem creating new repo

2010-03-29 Thread Randi Hillerøe
Oh sry for hitting the wrong answer button... I'm not that used to mailing lists... I'll look for strace somewhere.. There is both QPKG which has a web interface for installing and the IPKG which I can use through SSH. 2010/3/29 Ryan Schmidt subversion-20...@ryandesign.com On Mar 29, 2010, at