[openbeos] Re: write access

"Stephan Assmus" <superstippi@xxxxxx> wrote:
> I have just subscribed to the list. Good opportunaty to state what an 
> awesome project I think this is. Here's already my first question:
> 
> I understand that write access to the CVS must be earned, but I 
> thought 
> I already had write access, but it seems (though I have a login 
> account 
> under "stippi") I don't have write access. A couple months ago, I 
> have 
> contributed to the Translation Kit, Mike checked my work in. Now I 
> have 
> made some cosmetical changes to ShowImage, which I want to commit 
> myself. Can someone help me?

Indeed, you already have write access. Maybe you've checked out your 
repository as "anonymous"? In this case, CVS would not allow you to 
submit your changes.

This little script could help you:

--------------
#!/bin/sh
# fixes all CVS Root files from pserver:anonymous to ext:axeld

if [ "$1" == "" ]; then
        find . -name Root -exec cvsfix {} \;
else
        tmp=`sed -e "s/:pserver:anonymous/:ext:stippi/" "$1"`
        echo $tmp > "$1"
fi
--------------

HTH

Bye,
   Axel.


Other related posts: