svn:ignore with recursive and non-recursive patterns

2010-12-01 Thread Steve Cohen
I have a need to define a number of svn:ignore patterns in my project. Some are specific directories somewhere in my project tree. Others are particular file types created by a build process such as *.o which may be found in any number of directories. However, the svn propset command only a

Re: svn:ignore with recursive and non-recursive patterns

2010-12-01 Thread Ryan Schmidt
On Dec 1, 2010, at 12:29, Steve Cohen wrote: > I have a need to define a number of svn:ignore patterns in my project. > > Some are specific directories somewhere in my project tree. Others are > particular file types created by a build process such as *.o which may be > found in any number of

Re: svn:ignore with recursive and non-recursive patterns

2010-12-01 Thread Daniel Shahaf
You can use 'propedit --editor-cmd=script.sh **/', where script.sh appends '*.o' to argv[1]. Another example, the following is a "Fix typo in the log message" idiom: % svn propedit --revprop -r69426 --editor-cmd 'sed -i s/foo/bar/' svn:log Steve Cohen wrote on Wed, Dec 01, 2010 at 12:29:58 -0600:

Re: svn:ignore with recursive and non-recursive patterns

2010-12-02 Thread Steve Cohen
On 12/02/2010 12:23 AM, Daniel Shahaf wrote: You can use 'propedit --editor-cmd=script.sh **/', where script.sh appends '*.o' to argv[1]. Another example, the following is a "Fix typo in the log message" idiom: % svn propedit --revprop -r69426 --editor-cmd 'sed -i s/foo/bar/' svn:log Steve Cohe

Re: svn:ignore with recursive and non-recursive patterns

2010-12-02 Thread Daniel Shahaf
Steve Cohen wrote on Thu, Dec 02, 2010 at 07:48:05 -0600: > On 12/02/2010 12:23 AM, Daniel Shahaf wrote: >> You can use 'propedit --editor-cmd=script.sh **/', where script.sh >> appends '*.o' to argv[1]. >> > Does svn propset svn:ignore accept the **/filename idiom as a legitimate > pattern indic

Re: svn:ignore with recursive and non-recursive patterns

2010-12-02 Thread Steve Cohen
On 12/01/2010 12:29 PM, Steve Cohen wrote: I have a need to define a number of svn:ignore patterns in my project. Some are specific directories somewhere in my project tree. Others are particular file types created by a build process such as *.o which may be found in any number of directories.

Re: svn:ignore with recursive and non-recursive patterns

2010-12-02 Thread Steve Cohen
On 12/02/2010 10:23 AM, Steve Cohen wrote: On 12/01/2010 12:29 PM, Steve Cohen wrote: I have a need to define a number of svn:ignore patterns in my project. Some are specific directories somewhere in my project tree. Others are particular file types created by a build process such as *.o which