listing of modules

2004-04-23 Thread shalini . gautam
Hi , Using checkout -d top . command we are able to check out the modules as well as able to view the modules in a list.But we do not want to check out the modules on our local machine,we only want a list of all the modules present on the server. Can you please tell us the exact command only for

RE: how to checkin binary files

2004-04-23 Thread Gurpreet Singh (SCM)
Hi All, I have observed that code get from a branch is taking lot of time if compared to that involved in from the Main tree. Any inputs to this. Also to mention - there is no much additional size difference in the code base (Tree - branch). Regards Gurpreet S

RE: how to checkin binary files

2004-04-23 Thread Jim.Hyslop
Sarah Gonzales wrote: On Apr 22, 2004, at 12:14 PM, Larry Jones wrote: Theoretically, the RTF file would allow CVS to perform its usual merging of changes, but I'm not sure that Word's RTF generation is repeatable enough for it to actually work well. We use the RTF format of MS

Prevent PROD tags on code that does not have QA tag?

2004-04-23 Thread spamsucks
Hi everyone, I was wondering if anyone is aware of any canned scripts or tools that are available that will improve our code migration processes. We have 3 tags that we use for our builds 1) TEST 2) QA 3)PROD Any developer can tag code as TEST, but project managers need to request that code

RE: how to checkin binary files

2004-04-23 Thread Frederic Brehm
At 08:59 AM 4/23/2004, Gurpreet Singh (SCM) wrote: I have observed that code get from a branch is taking lot of time if compared to that involved in from the Main tree. CVS uses the rcs file format to store files in the repository. The doc/RCSFILES document in the CVS source tree describes how

Re: strange it is in the way message

2004-04-23 Thread Spiro Trikaliotis
Hello Derek, * On Thu, Apr 22, 2004 at 02:25:24PM -0400 Derek Robert Price wrote: Spiro Trikaliotis wrote: Bad memory? ;-) As I recall, that was a completely separate issue involving \r getting stuck in Entries files. You were also getting file/directory not found errors rather than

RE: Info-cvs Digest, Vol 17, Issue 31

2004-04-23 Thread Peter Sotos
I have a repository created on a Windows 2003 Standard Edition server. It is running cvsnt and I want to move it to a linux box. I was wondering if there was some way to export the projects in the old repository, to the new one? I know that I can simply use the export command, however, this will

Where can I take a CVS class?

2004-04-23 Thread Mary Wang
Hi, Does anyone know if any companies out there is offering on-line or regular CVS training classes? Thanks. Mary ___ Info-cvs mailing list [EMAIL PROTECTED] http://mail.gnu.org/mailman/listinfo/info-cvs

RE: strange it is in the way message

2004-04-23 Thread Lars Huttar
From: Derek Robert Price [mailto:[EMAIL PROTECTED] Jim.Hyslop wrote: Lars Huttar wrote: Jim, Thanks for your response. The server version is Server: Concurrent Versions System (CVS) 1.11.2 (client/server) I'm inquiring as to what the server platform is (it's in another state). A

RE: Where can I take a CVS class?

2004-04-23 Thread Fouts Christopher (IFNA MP)
Start with either the CVS online manual (free) or the Essential CVS book by Jennifer Vesperman ($40), or the like. -chris -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Mary Wang Sent: Friday, April 23, 2004 12:35 PM To: [EMAIL PROTECTED] Subject: Where

RE: Info-cvs Digest, Vol 17, Issue 31

2004-04-23 Thread Matthew . Riechers
-Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Behalf Of Peter Sotos Sent: Friday, April 23, 2004 12:47 PM To: [EMAIL PROTECTED] Subject: RE: Info-cvs Digest, Vol 17, Issue 31 I have a repository created on a Windows 2003 Standard Edition server. It is

RE: Info-cvs Digest, Vol 17, Issue 31

2004-04-23 Thread Jim.Hyslop
I see Matt has already answered your question. I will, however, repeat what has already been asked of you, the last time you posted: 1) Please DO NOT reply to the digest to start a new message 2) Please DO NOT include the entire digest in your message 3) Please DO change the subject line to

RE: Prevent PROD tags on code that does not have QA tag?

2004-04-23 Thread Van Quakebeke, Joseph (Mission Systems)
-Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Friday, April 23, 2004 10:27 AM To: info cvs Subject: Prevent PROD tags on code that does not have QA tag? Hi everyone, I was wondering if anyone is aware of any canned scripts or tools that are

cvswrappers file

2004-04-23 Thread Peter Sotos
I had a few questions on the cvswrappers file: 1) There are 3 files in the CVSROOT directory called cvswrappers o cvswrappers o .#cvswrappers o cvswrappers,v Which is the correct file for me to place my settings in? 2) I noticed in the example placed in the comments of the

Re: Info-cvs Digest, Vol 17, Issue 31

2004-04-23 Thread Derek Robert Price
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Peter Sotos wrote: I have a repository created on a Windows 2003 Standard Edition server. It is running cvsnt and I want to move it to a linux box. I was wondering if there was some way to export the projects in the old repository, to the new one? I

Re: cvswrappers file

2004-04-23 Thread Larry Jones
Peter Sotos writes: 1) There are 3 files in the CVSROOT directory called cvswrappers o cvswrappers o .#cvswrappers o cvswrappers,v Which is the correct file for me to place my settings in? None of the above. Like all of the administrative files, the cvswrappers file is

RE: cvswrappers file

2004-04-23 Thread Jim.Hyslop
Peter Sotos wrote: I had a few questions on the cvswrappers file: 1) There are 3 files in the CVSROOT directory called cvswrappers o cvswrappers o .#cvswrappers o cvswrappers,v Which is the correct file for me to place my settings in? I don't know offhand what the

Regarding how deltas are stored in CVS

2004-04-23 Thread Doug Lee
It was mentioned on another thread that CVS stores the HEAD revision in its entirety, older trunk revisions as backward deltas from the HEAD, and branches as forward deltas from the branch point. If I read this right, a common case will take a lot more space than I thought. My current project is

Permission denied

2004-04-23 Thread Peter Sotos
I have moved the repository but I keep getting this message when I try to checkout the repository: cvs -d /var/lib/cvsroot checkout CVSROOT cvs checkout: warning: cannot write to history file /var/lib/cvsroot/CVSROOT/history: Permission denied cvs checkout: Updating CVSROOT cvs checkout: failed

Re: Regarding how deltas are stored in CVS

2004-04-23 Thread Max Bowsher
Doug Lee wrote: It was mentioned on another thread that CVS stores the HEAD revision in its entirety, older trunk revisions as backward deltas from the HEAD, and branches as forward deltas from the branch point. If I read this right, a common case will take a lot more space than I thought.