RE: from Arun - lock in CVS

2003-09-30 Thread Teala Spitzbarth
Yes, which is basically a pass through to RCS level commands. My understanding is that CVS ("Concurrent Versions" System) wasn't designed in the model of "checkout the sourceand lock it" ( like SCCS does). CVS has a model of usingthe "edit" command which indicates to other developers that you

RE: notify

2003-01-31 Thread Teala Spitzbarth
You need to create a workspace where you check out CVSROOT, there you can edit the administration file and check it back in. mkdir work; cd work cvs co CVSROOT When you check it in, cvs will rebuild it's administration database to activate you change on the server. Teala -Original

RE: Can I check out a file without specifying the module it's in?

2002-10-31 Thread Teala Spitzbarth
find /path/to/repository -type f | grep -i fooglitz.c :-) -teala -Original Message- From: [EMAIL PROTECTED] [mailto:blained;mindspring.com] Sent: Thursday, October 31, 2002 9:12 AM To: [EMAIL PROTECTED] Subject: Can I check out a file without specifying the module it's in? Actually,

RE: cvs commit: nothing known about 'filename'

2002-05-20 Thread Teala Spitzbarth
Have you done a cvs add of the file first? Looks like you are trying to commit a new file without running the add first. Cheers, Teala -Original Message- From: Sven Sandberg [mailto:[EMAIL PROTECTED]] Sent: Saturday, May 18, 2002 4:41 PM To: [EMAIL PROTECTED] Subject: cvs commit:

RE: [BRANCH] How add a new file on a branch ?

2002-05-20 Thread Teala Spitzbarth
As long as you cvs add commit the new file from within a work tree pulled from the branch, (i.e. cvs co -r BRANCHNAME or cvs up -r BRANCHAME), then CVS will know to add that new file specifically to the branch. The new file will get placed into the Attic and only exist on the branch -

RE: Is this taginfo problem a permissions thing?

2002-05-20 Thread Teala Spitzbarth
Are you sure your CVSROOT variable was pointing to the test repository when you checked out CVSROOT commited the taginfo file? If taginfo did not change in your test repository, then it sure sounds like it got commited to some other repository... Cheers, Teala -Original Message-

RE: CVS command HELP

2002-05-15 Thread Teala Spitzbarth
Personally I don't use the import command to bring new source into our repository. I have a simple recursive shell script that walks down a directory structure adding directories and then checking to see if files are non-text and then either adds them with -kb or not, and commits them. Works

RE: CVS bug:Need CVS GUI to see/check G version Tree and revID

2002-05-15 Thread Teala Spitzbarth
Susan, If you did an import to bring the files into the repository initially, it will create a 1.1.1.1 version I don't think it is a bug. There are graphical tools: tkcvs will display graphical renditions of file versioning, see: http://www.twobarleycorns.net/tkcvs/tkcvs-log.gif Cheers,

RE: Win CVS Not Recognizing Some Files

2002-05-15 Thread Teala Spitzbarth
Do the Entries file in the CVS subdirectories look correct? (for any directories in the sandbox with affected files) ie. could the Entries files have been corrupted somehow? If the Entries files are missing entries for the files in question then that is why WinCVS is displaying ?. If this is

RE: are there any log files for cvs client/server connection information?

2002-05-14 Thread Teala Spitzbarth
Thanks for your reply David, - we are using pserver access - the checkout proceeded through about 1/3 of the files in the module, the hang happened after pulling over (successfully) a 15Mb file, and (presumably) during pulling over the next file in that directory (6Mb). - The checkout was

RE: are there any log files for cvs client/server connectioninformation?

2002-05-14 Thread Teala Spitzbarth
Thanks for your help Lee, The CVS_CLIENT_LOG looks good - I'll have to get it set up for when we are having the network problems and see the hangs again. What I realized from your inquiry about specifying the port number in the CVSROOT variable is that it doesn't work for versions 1.10.x

RE: rtag not tagging everything?

2002-05-14 Thread Teala Spitzbarth
I use rtag command on a nightly basis to tag the top of our tree, and then pull from that tag to do our nightly builds. I've never seen any instance where all files in the module were not tagged (i.e. this would result in a build failure for us if it did...), and the rtag command used in this

RE: can't add file to branch, not permissions problem

2002-05-14 Thread Teala Spitzbarth
Oh, that sounds nasty - is it a case issue with using WinCVS? I can't imagine you would get case issues on a Unix client We get directory issues with lower case getting converted to all caps frequently while using WinCVS back to a Linux server. I sure hope all the log fixes syntax changes

are there any log files for cvs client/server connection information?

2002-05-13 Thread Teala Spitzbarth
Recently we had a cvs co command 'hang' and we are trying to debug what happened. The server side (RH 6.2 running CVS 10.7) show no processes running, but the solaris side (Solaris 8, running CVS 1.11) still shows the cvs co in process.So somehow the server side closed the connect, but the

RE: can rtag on an existing branch?

2002-03-04 Thread Teala Spitzbarth
You can definitely use rtag to tag a branch: cvs rtag -r $BRANCH $TAG $MODULE Cheers, Teala -Original Message- From: Dan Walter [mailto:[EMAIL PROTECTED]] Sent: Monday, March 04, 2002 4:23 PM To: [EMAIL PROTECTED] Subject: can rtag on an existing branch? I created a branch with rtag

RE: Need help organizing a CVS tree. (Summary at the end)

2002-02-20 Thread Teala Spitzbarth
Terry, You seem to have some fundamentals about cvs a little blurred. What you are trying to do is fairly complex - your email is an interesting jigsaw puzzle. I don't know about your issue with cvs co -d, but fundamentally what you are trying to do by making a 'directory' in the source tree

RE: Help on the problem, please

2002-02-19 Thread Teala Spitzbarth
What about the parent directories above cvsroot/CVSROOT ? you don't show the ls listing for those as Larry mentioned. If they likewise are owned by cvs:techops and aren't 777, you still won't be able to write your history file into CVSROOT as user idw:idwgroup Also, I have found that creating

RE: import vs cvs co -c

2002-02-07 Thread Teala Spitzbarth
you need to explictly checkout the CVSROOT directory either locally on the server or on a client system by doing: cvs co /yourpathtorepository/CVSROOT cd /yourpathtorepository/CVSROOT vi modules add your new modules with

RE: Why does 'cvs admin -lbranchname' complain that my branch is absent?

2002-01-11 Thread Teala Spitzbarth
-Original Message- From: Teala Spitzbarth Sent: Thursday, January 10, 2002 11:32 AM To: 'Whitlock, Ginger'; [EMAIL PROTECTED] Subject: RE: Why does 'cvs admin -lbranchname' complain that my branch is absent? Oh, yuck. I know from other email that Larry has sent me that the way CVS

RE: Any Real time examples of Branching, Please!!!

2002-01-11 Thread Teala Spitzbarth
There was a similar thread about Build Processes (Release Engineering) in CVS back in August, started by Bil Joga. My reply outlines our tagging and branching model: http://mail.gnu.org/pipermail/info-cvs/2001-August/018972.html If you look around that date you will see a few other replies.

RE: How to restrict access to branches

2002-01-11 Thread Teala Spitzbarth
This topic is a frequently discussed one on the alias. There have been examples of commitinfo scripts posted on the alias which enable you to restrict access to branches. The one I use is based on lock-branch.sh posted by Shubhabrata Sengupta, see:

FW: Why does 'cvs admin -lbranchname' complain that my branch is absent?

2002-01-11 Thread Teala Spitzbarth
-Original Message- From: Teala Spitzbarth Sent: Thursday, January 10, 2002 11:32 AM To: 'Whitlock, Ginger'; [EMAIL PROTECTED] Subject: RE: Why does 'cvs admin -lbranchname' complain that my branch is absent? Oh, yuck. I know from other email that Larry has sent me that the way

RE: Why does 'cvs admin -lbranchname' complain that my branch is absent?

2002-01-11 Thread Teala Spitzbarth
Oh, yuck. I know from other email that Larry has sent me that the way CVS handles branches can be problematic in some commands - i.e. CVS doesn't actually create a branched version of each file when the branch is created (that is why you see the magic zero in that fake branch revision

RE: List all files that have changed between to tags?

2002-01-11 Thread Teala Spitzbarth
The most straightforward way is to use the rdiff command cvs rdiff -s -r green -r rel-1-1 MODULENAME This gives you a listing of all files that changed between the two tags, and the beginning and ending revisions for those files. If you want log information (i.e. commit comments for

RE: cannot committ ... sticky tags

2002-01-08 Thread Teala Spitzbarth
Jeanie, You said in your email yesterday that *you* created the Release_Aug21_2001 tag. The only way *you* can have a working copy of the tree listing sticky tags of Release_Aug21_2001 is if *you* either 1) did a fresh cvs co -r Release_Aug21_2001 module-name to create your tree or 2) did an

RE: cannot commit ... sticky tags

2002-01-07 Thread Teala Spitzbarth
Yes, the sticky tags just mean that the tree you were working in was pulled (or the one you used to create) the Release_Aug21_2001 tag, they haven't been put on every file in any different way than when you tagged the tree before you left. Developers that have been working in sandboxes pulled

RE: Weird module behavior

2001-09-14 Thread Teala Spitzbarth
Robert, I don't have any answers, but I can say that I have seen similar behavior. For awhile I was using an aliased module that excluded certain directories - but found that our developers (using pserver connections), would land up getting the excluded directories when they attempted to

RE: CVS newbie questions

2001-09-14 Thread Teala Spitzbarth
I think the critical question is what kind of IS support you get on that solaris system at the university, and how will your laptop/home system access the university systems? I.e. are you going to get permission to set up a pserver port for cvs on the solaris system (requires root access)?

RE: Newbie indeed

2001-09-10 Thread Teala Spitzbarth
you're not in a 'working copy' cvs has no knowledge of the directory structure or where to import it into the repository. -teala -Original Message- From: Marius Flage [mailto:[EMAIL PROTECTED]] Sent: Monday, September 10, 2001 9:13 AM To: [EMAIL PROTECTED] Subject: Newbie indeed Hi

RE: Use of CVS on large scales

2001-06-08 Thread Teala Spitzbarth
and very good platform availability for both server and client pieces. If you need more than CVS offers right now, I would be sure to evaluate Perforce along with ClearCase. Good Luck, Teala Spitzbarth ___ Info-cvs mailing list [EMAIL PROTECTED] http

extracting log information for branch changes?

2001-04-20 Thread Teala Spitzbarth
of the form x.x.0.x next to a Branch tag in the log output makes it seem at first glance that more files were modified on the branch than really were Thanks much Teala Spitzbarth ___ Info-cvs mailing list [EMAIL PROTECTED] http://mail.gnu.org/mailman

RE: Issues with raising the 'floor' in CVS

2001-02-16 Thread Teala Spitzbarth
So I take it no one out there has ever tried to emulate SCCS 'floor' model within CVS? Thanks Teala -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of Teala Spitzbarth Sent: Wednesday, February 14, 2001 12:42 PM To: [EMAIL PROTECTED] Subject: Issues

Issues with raising the 'floor' in CVS

2001-02-14 Thread Teala Spitzbarth
to enforce the raised revision on new files to write a script to be run by commitinfo ? Thanks much, Teala Spitzbarth ___ Info-cvs mailing list [EMAIL PROTECTED] http://mail.gnu.org/mailman/listinfo/info-cvs

RE: Moving, removing, and renaming files in CVS

2001-01-24 Thread Teala Spitzbarth
Saima! Tried to reply direct but don't think it went through... I've done alot of straight edits (mv's and rm's) on our cvs repository and haven't had any problems - but this is what I know will happen. 1) Don't do it if you have tags!! (you'll loose the ability to replicate old builds) 2)

Question on disabling automatic merges

2001-01-24 Thread Teala Spitzbarth
Hi Folks, Is there anyway to disable the automatic merge on checkin under CVS? I.e. to force that if a developer tries to checkin a file from a working copy that is outdated - they get an error message? I can see that if you admin files with the -m option, it will be disabled, but this requires

RE: What is Cederqvist?

2000-09-11 Thread Teala Spitzbarth
look here, and you'll see an online link to it... CVS Manual: Version Management with CVS, by Per Cederqvist et al http://www.cvshome.org/docs/index.html -teala -Original Message- From: Matthew Berney [mailto:[EMAIL PROTECTED]] Sent: Monday, September 11, 2000 4:25 PM To: 'CVS