Thread: [Htmlparser-developer] Re: cvs access
Brought to you by:
derrickoswald
From: Somik R. <so...@ya...> - 2002-12-08 17:52:36
|
Oh yes, Claude has, and so has Kaarle. The CVSROOT/users file is only = useful for adding watchers. I could do that, but as far as I understand, = once you do ssh, you should be able to access the repository and check = in code. Claude, Kaarle--> Can you shed more light on this ? Regards, Somik ----- Original Message -----=20 From: Derrick Oswald=20 To: Somik Raha=20 Cc: so...@us...=20 Sent: Sunday, December 08, 2002 7:13 AM Subject: Re: cvs access Somik, I can successfully ssh, which set up a ~/.ssh/known_hosts2 file on my = system, but I think you need to add me to the htmlparser/CVSROOT/users = file or something. As near as I can tell, you are the only one who has ever dropped = something into the repository. How do all the other developers affect the code base? Did they ever successfully commit using cvs? Derrick Somik Raha wrote: Hi Derrick This is probably a sourceforge quirk - you might need to ssh once, = and then you should be able to write to the repository. Bytway, I have = already committed the fix for HTMLFormTag.. Regards, Somik ----- Original Message ----- From: "Derrick Oswald" <Der...@ro...> To: <so...@ya...> Sent: Saturday, December 07, 2002 2:06 PM Subject: cvs access Somik, I tried dropping a small change and I get: cvs [server aborted]: "commit" requires write access to the repository Does CVS write access lag behind being added to the htmlparser project as a developer or is there some step you've forgotten? Derrick =20 =20 |
From: Kaarle K. <kaa...@ik...> - 2002-12-08 19:14:15
|
At 09:53 8.12.2002 -0800, Somik Raha wrote: >Oh yes, Claude has, and so has Kaarle. The CVSROOT/users file is only >useful for adding watchers. I could do that, but as far as I understand, >once you do ssh, you should be able to access the repository and check in code. > >Claude, Kaarle--> Can you shed more light on this ? hi, I have installed SSH software from www.f-secure.com I think it was something like F-Secure SSH 5.2 for Win95/98/ME/NT4.0/2000/XP Client It is a nice grapfical SSH client both for terminal use and filetransfer and it also contains commandline ssh2 software that CVS needs. To access CVS I first set it up with these commands set CVS_RSH=ssh2 set CVSROOT=use...@cv...:/cvsroot/htmlparser username = your sourceforge username In an empty directory I then can give CVS commands such as cvs chekcout htmlparser It asks for your password to sourceforge This retrieves the latest fileversions. Check the CVS commands in some handbook you can find on the internet. The manual I found is called Version Management with CVS by Per Cederqvist et al. perhaps from http://www.cvshome.org Kaarle >Regards, >Somik > >----- Original Message ----- >From: <mailto:Der...@ro...>Derrick Oswald >To: <mailto:so...@ya...>Somik Raha >Cc: <mailto:so...@us...>so...@us... >Sent: Sunday, December 08, 2002 7:13 AM >Subject: Re: cvs access > >Somik, > >I can successfully ssh, which set up a ~/.ssh/known_hosts2 file on my >system, but I think you need to add me to the htmlparser/CVSROOT/users >file or something. > >As near as I can tell, you are the only one who has ever dropped something >into the repository. >How do all the other developers affect the code base? >Did they ever successfully commit using cvs? > >Derrick > >Somik Raha wrote: >> >>Hi Derrick >> >> This is probably a sourceforge quirk - you might need to ssh once, and >> >>then you should be able to write to the repository. Bytway, I have already >> >>committed the fix for HTMLFormTag.. >> >> >>Regards, >> >>Somik >> >>----- Original Message ----- >> >>From: "Derrick Oswald" >><mailto:Der...@ro...><Der...@ro...> >> >>To: <mailto:so...@ya...><so...@ya...> >> >>Sent: Saturday, December 07, 2002 2:06 PM >> >>Subject: cvs access >> >> >> >> >>> >>>Somik, >>> >>> >>>I tried dropping a small change and I get: >>> >>>cvs [server aborted]: "commit" requires write access to the repository >>> >>> >>>Does CVS write access lag behind being added to the htmlparser project >>> >>>as a developer or is there some step you've forgotten? >>> >>> >>>Derrick >>> >>> >> >> >> >> >> --------------------------------------------- Kaarle Kaila http://www.iki.fi/kaila mailto:kaa...@ik... tel: +358 50 3725844 |
From: Kaarle K. <kaa...@ik...> - 2002-12-09 15:08:32
|
At 08:27 9.12.2002 -0500, Derrick Oswald wrote: >I can check out OK, do everything in fact, except commit. >The messages I get indicate everuthing is working as it should, I need to >login to access the repository as expected, but I suspect there is some >cron job at sourceforge that needs to run to add me to the 'write access' list: I set up the environment variables first (in windows as I explained earlier. i have done it also in Linux) Then I use some of the commands (something like this) cvs checkout htmlparser cvs update htmlparser cvs add file.java (from correct directory or with full path) cvs release -d htmlparser cvs commit I have no other parameters in the command regards Kaarle >$echo $CVS_RSH >/usr/bin/ssh -2 >$ cvs -t -d >:pserver:der...@cv...:/cvsroot/htmlparser >commit -F /tmp/tempCommit62337output >src/org/htmlparser/util/HTMLLinkProcessor.java >cvs commit: notice: main loop with >CVSROOT=:pserver:der...@cv...:/cvsroot/htmlparser >cvs commit: authorization failed: server cvs.kacoma.sourceforge.net >rejected access to /cvsroot/htmlparser for user derrickoswald >cvs commit: used empty password; try "cvs login" with a real password >$ cvs -t -d >:pserver:der...@cv...:/cvsroot/htmlparser login >cvs login: notice: main loop with >CVSROOT=:pserver:der...@cv...:/cvsroot/htmlparser >(Logging in to der...@cv...) >CVS password: >$ cvs -t -d >:pserver:der...@cv...:/cvsroot/htmlparser >commit -F /tmp/tempCommit62337output >src/org/htmlparser/util/HTMLLinkProcessor.java >cvs commit: notice: main loop with >CVSROOT=:pserver:der...@cv...:/cvsroot/htmlparser >-> Sending file `HTMLLinkProcessor.java' to server >cvs [server aborted]: "commit" requires write access to the repository >$ > >Kaarle Kaila wrote: > >>At 09:53 8.12.2002 -0800, Somik Raha wrote: >> >>>Oh yes, Claude has, and so has Kaarle. The CVSROOT/users file is only >>>useful for adding watchers. I could do that, but as far as I understand, >>>once you do ssh, you should be able to access the repository and check in code. >>> >>>Claude, Kaarle--> Can you shed more light on this ? >> >> >>hi, >> >>I have installed SSH software from www.f-secure.com >> >>I think it was something like F-Secure SSH 5.2 for >>Win95/98/ME/NT4.0/2000/XP Client >> >>It is a nice grapfical SSH client both for terminal use and filetransfer >>and it also contains commandline ssh2 software that CVS needs. >> >>To access CVS I first set it up with these commands >> >>set CVS_RSH=ssh2 >>set CVSROOT=use...@cv...:/cvsroot/htmlparser >> >>username = your sourceforge username >> >>In an empty directory I then can give CVS commands such as >> >>cvs chekcout htmlparser >> >>It asks for your password to sourceforge >> >>This retrieves the latest fileversions. >>Check the CVS commands in some handbook you can find on the internet. >>The manual I found is called Version Management with CVS by Per >>Cederqvist et al. >>perhaps from http://www.cvshome.org >> >>Kaarle >> >>>Regards, >>>Somik >>> >>>----- Original Message ----- >>>From: <mailto:Der...@ro...>Derrick Oswald >>>To: <mailto:so...@ya...>Somik Raha >>>Cc: <mailto:so...@us...>so...@us... >>>Sent: Sunday, December 08, 2002 7:13 AM >>>Subject: Re: cvs access >>> >>>Somik, >>> >>>I can successfully ssh, which set up a ~/.ssh/known_hosts2 file on my >>>system, but I think you need to add me to the htmlparser/CVSROOT/users >>>file or something. >>> >>>As near as I can tell, you are the only one who has ever dropped >>>something into the repository. >>>How do all the other developers affect the code base? >>>Did they ever successfully commit using cvs? >>> >>>Derrick >>> >>>Somik Raha wrote: >>> >>>> >>>>Hi Derrick >>>> >>>> This is probably a sourceforge quirk - you might need to ssh once, and >>>> >>>>then you should be able to write to the repository. Bytway, I have already >>>> >>>>committed the fix for HTMLFormTag.. >>>> >>>> >>>>Regards, >>>> >>>>Somik >>>> >>>>----- Original Message ----- >>>> >>>>From: "Derrick Oswald" >>>><mailto:Der...@ro...><Der...@ro...> >>>> >>>>To: <mailto:so...@ya...><so...@ya...> >>>> >>>>Sent: Saturday, December 07, 2002 2:06 PM >>>> >>>>Subject: cvs access >>>> >>>> >>>> >>>> >>>>> >>>>>Somik, >>>>> >>>>> >>>>>I tried dropping a small change and I get: >>>>> >>>>>cvs [server aborted]: "commit" requires write access to the repository >>>>> >>>>> >>>>>Does CVS write access lag behind being added to the htmlparser project >>>>> >>>>>as a developer or is there some step you've forgotten? >>>>> >>>>> >>>>>Derrick >>>>> >>>> >>>> >>>> >>>> >> >>--------------------------------------------- >>Kaarle Kaila >>http://www.iki.fi/kaila >>mailto:kaa...@ik... >>tel: +358 50 3725844 >> >> >>------------------------------------------------------- >>This sf.net email is sponsored by:ThinkGeek >>Welcome to geek heaven. >>http://thinkgeek.com/sf >>_______________________________________________ >>Htmlparser-developer mailing list >>Htm...@li... >>https://lists.sourceforge.net/lists/listinfo/htmlparser-developer > > > > >------------------------------------------------------- >This sf.net email is sponsored by:ThinkGeek >Welcome to geek heaven. >http://thinkgeek.com/sf >_______________________________________________ >Htmlparser-developer mailing list >Htm...@li... >https://lists.sourceforge.net/lists/listinfo/htmlparser-developer --------------------------------------------- Kaarle Kaila http://www.iki.fi/kaila mailto:kaa...@ik... tel: +358 50 3725844 |
From: Derrick O. <Der...@ro...> - 2002-12-10 07:17:46
|
Just to finish up this thread... the answer us to use ext instead of pserver and follow the instructions here: https://sourceforge.net/docman/display_doc.php?docid=761&group_id=1 Derrick Kaarle Kaila wrote: > At 08:27 9.12.2002 -0500, Derrick Oswald wrote: > >> I can check out OK, do everything in fact, except commit. >> The messages I get indicate everuthing is working as it should, I >> need to login to access the repository as expected, but I suspect >> there is some cron job at sourceforge that needs to run to add me to >> the 'write access' list: > > > > I set up the environment variables first > (in windows as I explained earlier. i have done it also in Linux) > > Then I use some of the commands (something like this) > > cvs checkout htmlparser > cvs update htmlparser > cvs add file.java (from correct directory or with full path) > cvs release -d htmlparser > cvs commit > > I have no other parameters in the command > > regards > Kaarle > > >> $echo $CVS_RSH >> /usr/bin/ssh -2 >> $ cvs -t -d >> :pserver:der...@cv...:/cvsroot/htmlparser >> commit -F /tmp/tempCommit62337output >> src/org/htmlparser/util/HTMLLinkProcessor.java >> cvs commit: notice: main loop with >> CVSROOT=:pserver:der...@cv...:/cvsroot/htmlparser >> >> cvs commit: authorization failed: server cvs.kacoma.sourceforge.net >> rejected access to /cvsroot/htmlparser for user derrickoswald >> cvs commit: used empty password; try "cvs login" with a real password >> $ cvs -t -d >> :pserver:der...@cv...:/cvsroot/htmlparser >> login >> cvs login: notice: main loop with >> CVSROOT=:pserver:der...@cv...:/cvsroot/htmlparser >> >> (Logging in to der...@cv...) >> CVS password: >> $ cvs -t -d >> :pserver:der...@cv...:/cvsroot/htmlparser >> commit -F /tmp/tempCommit62337output >> src/org/htmlparser/util/HTMLLinkProcessor.java >> cvs commit: notice: main loop with >> CVSROOT=:pserver:der...@cv...:/cvsroot/htmlparser >> >> -> Sending file `HTMLLinkProcessor.java' to server >> cvs [server aborted]: "commit" requires write access to the repository >> $ >> >> Kaarle Kaila wrote: >> >>> At 09:53 8.12.2002 -0800, Somik Raha wrote: >>> >>>> Oh yes, Claude has, and so has Kaarle. The CVSROOT/users file is >>>> only useful for adding watchers. I could do that, but as far as I >>>> understand, once you do ssh, you should be able to access the >>>> repository and check in code. >>>> >>>> Claude, Kaarle--> Can you shed more light on this ? >>> >>> >>> >>> hi, >>> >>> I have installed SSH software from www.f-secure.com >>> >>> I think it was something like F-Secure SSH 5.2 for >>> Win95/98/ME/NT4.0/2000/XP Client >>> >>> It is a nice grapfical SSH client both for terminal use and >>> filetransfer >>> and it also contains commandline ssh2 software that CVS needs. >>> >>> To access CVS I first set it up with these commands >>> >>> set CVS_RSH=ssh2 >>> set CVSROOT=use...@cv...:/cvsroot/htmlparser >>> >>> username = your sourceforge username >>> >>> In an empty directory I then can give CVS commands such as >>> >>> cvs chekcout htmlparser >>> >>> It asks for your password to sourceforge >>> >>> This retrieves the latest fileversions. >>> Check the CVS commands in some handbook you can find on the internet. >>> The manual I found is called Version Management with CVS by Per >>> Cederqvist et al. >>> perhaps from http://www.cvshome.org >>> >>> Kaarle >>> >>>> Regards, >>>> Somik >>>> >>>> ----- Original Message ----- >>>> From: <mailto:Der...@ro...>Derrick Oswald >>>> To: <mailto:so...@ya...>Somik Raha >>>> Cc: <mailto:so...@us...>so...@us... >>>> Sent: Sunday, December 08, 2002 7:13 AM >>>> Subject: Re: cvs access >>>> >>>> Somik, >>>> >>>> I can successfully ssh, which set up a ~/.ssh/known_hosts2 file on >>>> my system, but I think you need to add me to the >>>> htmlparser/CVSROOT/users file or something. >>>> >>>> As near as I can tell, you are the only one who has ever dropped >>>> something into the repository. >>>> How do all the other developers affect the code base? >>>> Did they ever successfully commit using cvs? >>>> >>>> Derrick >>>> >>>> Somik Raha wrote: >>>> >>>>> >>>>> Hi Derrick >>>>> >>>>> This is probably a sourceforge quirk - you might need to ssh >>>>> once, and >>>>> >>>>> then you should be able to write to the repository. Bytway, I have >>>>> already >>>>> >>>>> committed the fix for HTMLFormTag.. >>>>> >>>>> >>>>> Regards, >>>>> >>>>> Somik >>>>> >>>>> ----- Original Message ----- >>>>> >>>>> From: "Derrick Oswald" >>>>> <mailto:Der...@ro...><Der...@ro...> >>>>> >>>>> To: <mailto:so...@ya...><so...@ya...> >>>>> >>>>> Sent: Saturday, December 07, 2002 2:06 PM >>>>> >>>>> Subject: cvs access >>>>> >>>>> >>>>> >>>>> >>>>>> >>>>>> Somik, >>>>>> >>>>>> >>>>>> I tried dropping a small change and I get: >>>>>> >>>>>> cvs [server aborted]: "commit" requires write access to the >>>>>> repository >>>>>> >>>>>> >>>>>> Does CVS write access lag behind being added to the htmlparser >>>>>> project >>>>>> >>>>>> as a developer or is there some step you've forgotten? >>>>>> >>>>>> >>>>>> Derrick >>>>>> >>>>> >>>>> >>>>> >>>>> >>> >>> --------------------------------------------- >>> Kaarle Kaila >>> http://www.iki.fi/kaila >>> mailto:kaa...@ik... >>> tel: +358 50 3725844 >>> >>> >>> ------------------------------------------------------- >>> This sf.net email is sponsored by:ThinkGeek >>> Welcome to geek heaven. >>> http://thinkgeek.com/sf >>> _______________________________________________ >>> Htmlparser-developer mailing list >>> Htm...@li... >>> https://lists.sourceforge.net/lists/listinfo/htmlparser-developer >> >> >> >> >> >> ------------------------------------------------------- >> This sf.net email is sponsored by:ThinkGeek >> Welcome to geek heaven. >> http://thinkgeek.com/sf >> _______________________________________________ >> Htmlparser-developer mailing list >> Htm...@li... >> https://lists.sourceforge.net/lists/listinfo/htmlparser-developer > > > --------------------------------------------- > Kaarle Kaila > http://www.iki.fi/kaila > mailto:kaa...@ik... > tel: +358 50 3725844 > > > ------------------------------------------------------- > This sf.net email is sponsored by:ThinkGeek > Welcome to geek heaven. > http://thinkgeek.com/sf > _______________________________________________ > Htmlparser-developer mailing list > Htm...@li... > https://lists.sourceforge.net/lists/listinfo/htmlparser-developer > |
From: Somik R. <so...@ya...> - 2002-12-10 08:30:13
|
Oh, I thought you were using this all along... This is also on the htmlparser cvs page. Regards, Somik --- Derrick Oswald <Der...@ro...> wrote: > > Just to finish up this thread... the answer us to > use ext instead of > pserver and follow the instructions here: > https://sourceforge.net/docman/display_doc.php?docid=761&group_id=1 > > Derrick > > Kaarle Kaila wrote: > > > At 08:27 9.12.2002 -0500, Derrick Oswald wrote: > > > >> I can check out OK, do everything in fact, except > commit. > >> The messages I get indicate everuthing is working > as it should, I > >> need to login to access the repository as > expected, but I suspect > >> there is some cron job at sourceforge that needs > to run to add me to > >> the 'write access' list: > > > > > > > > I set up the environment variables first > > (in windows as I explained earlier. i have done it > also in Linux) > > > > Then I use some of the commands (something like > this) > > > > cvs checkout htmlparser > > cvs update htmlparser > > cvs add file.java (from correct directory or > with full path) > > cvs release -d htmlparser > > cvs commit > > > > I have no other parameters in the command > > > > regards > > Kaarle > > > > > >> $echo $CVS_RSH > >> /usr/bin/ssh -2 > >> $ cvs -t -d > >> > :pserver:der...@cv...:/cvsroot/htmlparser > >> commit -F /tmp/tempCommit62337output > >> src/org/htmlparser/util/HTMLLinkProcessor.java > >> cvs commit: notice: main loop with > >> > CVSROOT=:pserver:der...@cv...:/cvsroot/htmlparser > > >> > >> cvs commit: authorization failed: server > cvs.kacoma.sourceforge.net > >> rejected access to /cvsroot/htmlparser for user > derrickoswald > >> cvs commit: used empty password; try "cvs login" > with a real password > >> $ cvs -t -d > >> > :pserver:der...@cv...:/cvsroot/htmlparser > > >> login > >> cvs login: notice: main loop with > >> > CVSROOT=:pserver:der...@cv...:/cvsroot/htmlparser > > >> > >> (Logging in to > der...@cv...) > >> CVS password: > >> $ cvs -t -d > >> > :pserver:der...@cv...:/cvsroot/htmlparser > >> commit -F /tmp/tempCommit62337output > >> src/org/htmlparser/util/HTMLLinkProcessor.java > >> cvs commit: notice: main loop with > >> > CVSROOT=:pserver:der...@cv...:/cvsroot/htmlparser > > >> > >> -> Sending file `HTMLLinkProcessor.java' to > server > >> cvs [server aborted]: "commit" requires write > access to the repository > >> $ > >> > >> Kaarle Kaila wrote: > >> > >>> At 09:53 8.12.2002 -0800, Somik Raha wrote: > >>> > >>>> Oh yes, Claude has, and so has Kaarle. The > CVSROOT/users file is > >>>> only useful for adding watchers. I could do > that, but as far as I > >>>> understand, once you do ssh, you should be able > to access the > >>>> repository and check in code. > >>>> > >>>> Claude, Kaarle--> Can you shed more light on > this ? > >>> > >>> > >>> > >>> hi, > >>> > >>> I have installed SSH software from > www.f-secure.com > >>> > >>> I think it was something like F-Secure SSH 5.2 > for > >>> Win95/98/ME/NT4.0/2000/XP Client > >>> > >>> It is a nice grapfical SSH client both for > terminal use and > >>> filetransfer > >>> and it also contains commandline ssh2 software > that CVS needs. > >>> > >>> To access CVS I first set it up with these > commands > >>> > >>> set CVS_RSH=ssh2 > >>> set > CVSROOT=use...@cv...:/cvsroot/htmlparser > >>> > >>> username = your sourceforge username > >>> > >>> In an empty directory I then can give CVS > commands such as > >>> > >>> cvs chekcout htmlparser > >>> > >>> It asks for your password to sourceforge > >>> > >>> This retrieves the latest fileversions. > >>> Check the CVS commands in some handbook you can > find on the internet. > >>> The manual I found is called Version Management > with CVS by Per > >>> Cederqvist et al. > >>> perhaps from http://www.cvshome.org > >>> > >>> Kaarle > >>> > >>>> Regards, > >>>> Somik > >>>> > >>>> ----- Original Message ----- > >>>> From: <mailto:Der...@ro...>Derrick > Oswald > >>>> To: <mailto:so...@ya...>Somik Raha > >>>> Cc: > <mailto:so...@us...>so...@us... > >>>> Sent: Sunday, December 08, 2002 7:13 AM > >>>> Subject: Re: cvs access > >>>> > >>>> Somik, > >>>> > >>>> I can successfully ssh, which set up a > ~/.ssh/known_hosts2 file on > >>>> my system, but I think you need to add me to > the > >>>> htmlparser/CVSROOT/users file or something. > >>>> > >>>> As near as I can tell, you are the only one who > has ever dropped > >>>> something into the repository. > >>>> How do all the other developers affect the code > base? > >>>> Did they ever successfully commit using cvs? > >>>> > >>>> Derrick > >>>> > >>>> Somik Raha wrote: > >>>> > >>>>> > >>>>> Hi Derrick > >>>>> > >>>>> This is probably a sourceforge quirk - you > might need to ssh > >>>>> once, and > >>>>> > >>>>> then you should be able to write to the > repository. Bytway, I have > >>>>> already > >>>>> > >>>>> committed the fix for HTMLFormTag.. > >>>>> > >>>>> > >>>>> Regards, > >>>>> > >>>>> Somik > >>>>> > >>>>> ----- Original Message ----- > >>>>> > >>>>> From: "Derrick Oswald" > === message truncated === __________________________________________________ Do you Yahoo!? Yahoo! Mail Plus - Powerful. Affordable. Sign up now. http://mailplus.yahoo.com |
From: Derrick O. <Der...@ro...> - 2002-12-09 13:21:45
|
I can check out OK, do everything in fact, except commit. The messages I get indicate everuthing is working as it should, I need to login to access the repository as expected, but I suspect there is some cron job at sourceforge that needs to run to add me to the 'write access' list: $echo $CVS_RSH /usr/bin/ssh -2 $ cvs -t -d :pserver:der...@cv...:/cvsroot/htmlparser commit -F /tmp/tempCommit62337output src/org/htmlparser/util/HTMLLinkProcessor.java cvs commit: notice: main loop with CVSROOT=:pserver:der...@cv...:/cvsroot/htmlparser cvs commit: authorization failed: server cvs.kacoma.sourceforge.net rejected access to /cvsroot/htmlparser for user derrickoswald cvs commit: used empty password; try "cvs login" with a real password $ cvs -t -d :pserver:der...@cv...:/cvsroot/htmlparser login cvs login: notice: main loop with CVSROOT=:pserver:der...@cv...:/cvsroot/htmlparser (Logging in to der...@cv...) CVS password: $ cvs -t -d :pserver:der...@cv...:/cvsroot/htmlparser commit -F /tmp/tempCommit62337output src/org/htmlparser/util/HTMLLinkProcessor.java cvs commit: notice: main loop with CVSROOT=:pserver:der...@cv...:/cvsroot/htmlparser -> Sending file `HTMLLinkProcessor.java' to server cvs [server aborted]: "commit" requires write access to the repository $ Kaarle Kaila wrote: > At 09:53 8.12.2002 -0800, Somik Raha wrote: > >> Oh yes, Claude has, and so has Kaarle. The CVSROOT/users file is only >> useful for adding watchers. I could do that, but as far as I >> understand, once you do ssh, you should be able to access the >> repository and check in code. >> >> Claude, Kaarle--> Can you shed more light on this ? > > > hi, > > I have installed SSH software from www.f-secure.com > > I think it was something like F-Secure SSH 5.2 for > Win95/98/ME/NT4.0/2000/XP Client > > It is a nice grapfical SSH client both for terminal use and filetransfer > and it also contains commandline ssh2 software that CVS needs. > > To access CVS I first set it up with these commands > > set CVS_RSH=ssh2 > set CVSROOT=use...@cv...:/cvsroot/htmlparser > > username = your sourceforge username > > In an empty directory I then can give CVS commands such as > > cvs chekcout htmlparser > > It asks for your password to sourceforge > > This retrieves the latest fileversions. > Check the CVS commands in some handbook you can find on the internet. > The manual I found is called Version Management with CVS by Per > Cederqvist et al. > perhaps from http://www.cvshome.org > > Kaarle > >> Regards, >> Somik >> >> ----- Original Message ----- >> From: <mailto:Der...@ro...>Derrick Oswald >> To: <mailto:so...@ya...>Somik Raha >> Cc: <mailto:so...@us...>so...@us... >> Sent: Sunday, December 08, 2002 7:13 AM >> Subject: Re: cvs access >> >> Somik, >> >> I can successfully ssh, which set up a ~/.ssh/known_hosts2 file on my >> system, but I think you need to add me to the >> htmlparser/CVSROOT/users file or something. >> >> As near as I can tell, you are the only one who has ever dropped >> something into the repository. >> How do all the other developers affect the code base? >> Did they ever successfully commit using cvs? >> >> Derrick >> >> Somik Raha wrote: >> >>> >>> Hi Derrick >>> >>> This is probably a sourceforge quirk - you might need to ssh >>> once, and >>> >>> then you should be able to write to the repository. Bytway, I have >>> already >>> >>> committed the fix for HTMLFormTag.. >>> >>> >>> Regards, >>> >>> Somik >>> >>> ----- Original Message ----- >>> >>> From: "Derrick Oswald" >>> <mailto:Der...@ro...><Der...@ro...> >>> >>> To: <mailto:so...@ya...><so...@ya...> >>> >>> Sent: Saturday, December 07, 2002 2:06 PM >>> >>> Subject: cvs access >>> >>> >>> >>> >>>> >>>> Somik, >>>> >>>> >>>> I tried dropping a small change and I get: >>>> >>>> cvs [server aborted]: "commit" requires write access to the repository >>>> >>>> >>>> Does CVS write access lag behind being added to the htmlparser project >>>> >>>> as a developer or is there some step you've forgotten? >>>> >>>> >>>> Derrick >>>> >>>> >>> >>> >>> >>> >>> > > --------------------------------------------- > Kaarle Kaila > http://www.iki.fi/kaila > mailto:kaa...@ik... > tel: +358 50 3725844 > > > ------------------------------------------------------- > This sf.net email is sponsored by:ThinkGeek > Welcome to geek heaven. > http://thinkgeek.com/sf > _______________________________________________ > Htmlparser-developer mailing list > Htm...@li... > https://lists.sourceforge.net/lists/listinfo/htmlparser-developer > |