You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@lenya.apache.org by Michael Wechner <mi...@wyona.com> on 2004/09/28 23:17:53 UTC

svn question

Sorry for being a bit off-topic and sounding a bit stupid, but does 
anyone know how to  apply "svn:ignore"?

I tried

svn propset svn:ignore src/webapp/lenya/bin/feeds.properties

but received the following error

svn: Explicit target required ('src/webapp/lenya/bin/feeds.properties' 
interpreted as prop value)

Thanks

Michi


-- 
Michael Wechner
Wyona Inc.  -   Open Source Content Management   -   Apache Lenya
http://www.wyona.com              http://cocoon.apache.org/lenya/
michael.wechner@wyona.com                        michi@apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: lenya-dev-unsubscribe@cocoon.apache.org
For additional commands, e-mail: lenya-dev-help@cocoon.apache.org


Re: svn question

Posted by Guido Wesdorp <gu...@infrae.com>.
Michael Wechner wrote:

> It also seems that the following works
>
> svn propset svn:ignore -F .cvsignore .
>
> whereas .cvsignore contains the files to ignore, whereas this might 
> confuse people a bit because of the .cvsignore file.
>
Yes, that works, and obviously you can use other filenames too... To 
update the setting, you can do the following:

$ svn propget svn:ignore some_dir > ignore
... edit the 'ignore' file...
$ svn propset svn:ignore -F ignore some_dir

Cheers,

Guido

---------------------------------------------------------------------
To unsubscribe, e-mail: lenya-dev-unsubscribe@cocoon.apache.org
For additional commands, e-mail: lenya-dev-help@cocoon.apache.org


Re: svn question

Posted by Michael Wechner <mi...@wyona.com>.
Stefano Mazzocchi wrote:

>
>>
>> but received the following error
>>
>> svn: Explicit target required 
>> ('src/webapp/lenya/bin/feeds.properties' interpreted as prop value)
>
>
> I use propedit


thanks a lot for the pointer:

svn propedit svn:ignore .

Whereas I set "export EDITOR=vi"

and then added the file feeds.properties and then commited the directory

svn ci -m "ignore feeds.properties" .


It also seems that the following works

svn propset svn:ignore -F .cvsignore .

whereas .cvsignore contains the files to ignore, whereas this might 
confuse people a bit because of the .cvsignore file.


-- 
Michael Wechner
Wyona Inc.  -   Open Source Content Management   -   Apache Lenya
http://www.wyona.com              http://cocoon.apache.org/lenya/
michael.wechner@wyona.com                        michi@apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: lenya-dev-unsubscribe@cocoon.apache.org
For additional commands, e-mail: lenya-dev-help@cocoon.apache.org


Re: svn question

Posted by Stefano Mazzocchi <st...@apache.org>.
Michael Wechner wrote:

> Sorry for being a bit off-topic and sounding a bit stupid, but does 
> anyone know how to  apply "svn:ignore"?
> 
> I tried
> 
> svn propset svn:ignore src/webapp/lenya/bin/feeds.properties
> 
> but received the following error
> 
> svn: Explicit target required ('src/webapp/lenya/bin/feeds.properties' 
> interpreted as prop value)

I use propedit

-- 
Stefano.