This is the mail archive of the binutils@sourceware.org mailing list for the binutils project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: re-enabling write access to binutils tree


On Wed, Sep 19, 2012 at 11:15 AM, Steve Ellcey <sellcey@mips.com> wrote:
>
> I am not sure who to direct this to but the last time I made a change
> to the binutils tree I was at another company and I think after doing
> one cvs login I was able to do writes without having to think about what
> login name and password cvs was using.  Now I have moved and I hung on to
> my ssh key so I could keep doing GCC checkins (after getting a new copyright
> assignment of course) but I have forgotton what login/password I used for
> binutils checkins and cannot find it anywhere.  Can someone help me?  Is the
> login name the same as for gcc (sje@gcc.gnu.org) or would it be
> sje@sourceware.org?  How can I get / reset the password?

The account name is the same, you need to use SSH.

cat > ~/bin/cvsssh <<EOF
#!/bin/sh
exec ssh -C -k -x $* 2>/dev/null
EOF
chmod +x ~/bin/cvsssh
CVS_RSH=cvsssh # assumes ~/bin is on PATH
export CVS_RSH
cvs -d :ext:sje@sourceware.org:/cvs/src co binutils

Ian


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]