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

Re: command line to remove a property

2010-03-29 Thread Andy Levy
On Mon, Mar 29, 2010 at 13:49, Bob Archer 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 and > some othe

Re: command line to remove a property

2010-03-29 Thread Stein Somers
This will take care of the recursion: for /R %f in (*.sql) do svn propdel svn:mime-type "%f" -- Stein

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 (*.s