Re: contrib directory?

2005-05-04 Thread Jim Hyslop
[EMAIL PROTECTED] wrote: This is like the third reference I've seen to a contrib directory... where is it? As I said, it's in the source code distribution. Download the source code from www.cvshome.org. -- Jim ___ Info-cvs mailing list

RE: Question about binary distribution

2005-05-04 Thread Conrad T. Pino
From: Arthur Barrett hello, i downloaded cvs-1-11-20.zip from https://ccvs.cvshome.org but i cant find information about wich windows versions are supported. Is Windows 2003 server suitable for cvs server ? You may also need cygwin and other tools to run this version of CVS on Windows

RE: Question about binary distribution

2005-05-04 Thread Arthur Barrett
Conrad, hello, i downloaded cvs-1-11-20.zip from https://ccvs.cvshome.org but i canĀ“t find information about wich windows versions are supported. Is Windows 2003 server suitable for cvs server ? You may also need cygwin and other tools to run this version of CVS on Windows Server 2003. The

rcsinfo

2005-05-04 Thread Michael Starkie
Hello, I have checked in the rcsinfo file below to CVSROOT but i don't see the contents of the included template show in the editor when I do a commit. The template contains one line, a bug id. bugId: - rcsinfo -- cvs version: 1.11.18 on redhat # The rcsinfo file is used to control

contrib directory?

2005-05-04 Thread dzielke
This is like the third reference I've seen to a contrib directory... where is it? Thanks, Don Zielke American Electric Power Direct (614) 583-6337 Audinet 8-220-6337 Email dzielke (at) aep.com --- KForce Professional Staffing 501 W. Schrock Road Suite 207 Westerville, OH 43081 Jim Hyslop

Re: rcsinfo

2005-05-04 Thread Michael Starkie
The reason this was not working is because the template is stored locally uder the CVS directory so it only applies to new modules that are checked out. After implementing rcs info you must check everything out again. ___ Info-cvs mailing list

RE: Question about binary distribution

2005-05-04 Thread dzielke
Sorry if this has been answered already... If you want to run it on Windows you'll need to go to http://www.cvsnt.org and download the Windows binaries for CVSNT. Thanks, Don Zielke American Electric Power Direct (614) 583-6337 Audinet 8-220-6337 Email dzielke (at) aep.com --- KForce

Re: Renaming a branch

2005-05-04 Thread Larry Jones
David Leskovac writes: Would this work for each branch to be renamed?: cvs rtag -b -r original_branch_name new_branch_name module No, that creates a new branch off of the existing branch rather than renaming the existing branch. You need to use admin -n instead. -Larry Jones Kicking dust

Re: Question about binary distribution

2005-05-04 Thread Mark D. Baushke
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Arthur Barrett [EMAIL PROTECTED] writes: hello, i downloaded cvs-1-11-20.zip from https://ccvs.cvshome.org but i can=B4t find information about wich windows versions are supported. Is Windows 2003 server suitable for cvs server ? You may also

(no subject)

2005-05-04 Thread Mark Baushke
: Arthur Barrett [EMAIL PROTECTED] cc: Conrad T. Pino [EMAIL PROTECTED], HSP [EMAIL PROTECTED], info-cvs@gnu.org Subject: Re: Question about binary distribution In-Reply-To: [EMAIL PROTECTED] References: [EMAIL PROTECTED] From: Mark D. Baushke [EMAIL PROTECTED] X-Mailer: MH-E 7.82+cvs; nmh

Re: rcsinfo

2005-05-04 Thread Mark D. Baushke
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Hi Michael, You may need to see if CVS/Template is getting properly setup. I believe that a cvs 1.11.x server does not update that file via a 'cvs update' while a cvs 1.12.x server does update it. If you checkout a new tree, you should see the new

RE: Renaming a branch

2005-05-04 Thread David Leskovac
You still need a 2-step process, you just use admin -n to create a new name for the existing branch rather than using tag -b to create a new branch: cvs admin -n newname:oldname cvs tag -d oldname (Note that there's no radmin command so you need to have a checked out working

RE: Renaming a branch

2005-05-04 Thread David Leskovac
Would this work for each branch to be renamed?: cvs rtag -b -r original_branch_name new_branch_name module No, that creates a new branch off of the existing branch rather than renaming the existing branch. You need to use admin -n instead. Okay. So rather than the 2-step process I

Re: Renaming a branch

2005-05-04 Thread Larry Jones
David Leskovac writes: Okay. So rather than the 2-step process I mentioned in my original post where I would create a new branch from the original branch then delete the original branch, there is a way to simply rename the existing branch with a cvs admin -n command? I looked at the syntax

Re: Renaming a branch

2005-05-04 Thread Jim Hyslop
David Leskovac wrote: Sorry for the basic question but I need to implement a new branch naming scheme want to make sure I am doing this correctly. To start this process, I need to rename several existing branches. Would this work for each branch to be renamed?: cvs rtag -b -r original_branch_name

Re: Renaming a branch

2005-05-04 Thread Larry Jones
David Leskovac writes: Okay. So, just to be clear, this is actually a 3-step process: 1. Checkout branch: cvs co -r branchname module 2. Rename from sandbox: cd to root of module in sandbox cvs admin -n newname:oldname 3. Delete original tag name sandbox: cd to root of module