You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@subversion.apache.org by Kenneth Porter <sh...@sewingwitch.com> on 2004/07/24 18:36:03 UTC

Recursive propset of svn:ignore

I wanted to set the svn:ignore property on the directories in my project 
but I'm wondering if the -R switch will also set it on all the files? Is 
that a bad thing?

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@subversion.tigris.org
For additional commands, e-mail: users-help@subversion.tigris.org

Re: Recursive propset of svn:ignore

Posted by Brian Mathis <bm...@directedge.com>.
cd into your working copy then:
	find ./ -type d | xargs svn propset svn:ignore 'value'
don't use -R.

To see what it will operate on, you can do:
	find ./ -type d
as a dry run type of thing.


Kenneth Porter wrote:
> I wanted to set the svn:ignore property on the directories in my project 
> but I'm wondering if the -R switch will also set it on all the files? Is 
> that a bad thing?

-- 
Brian Mathis
http://directedge.com/b/

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@subversion.tigris.org
For additional commands, e-mail: users-help@subversion.tigris.org