Re: how to create/design your repository/project

2000-08-17 Thread Laird Nelson
[EMAIL PROTECTED] wrote: How should I set up my repository to best benefit the development/management effort? should we have multiple repositories? each repository represents one of our clients. or should we have just 1 repository, define multiple modules and each module represents one

Re: how to create/design your repository/project

2000-08-17 Thread Frederic Brehm
At 17:59 -0400 8/16/00, [EMAIL PROTECTED] wrote: Hi, I'm new in CVS. After reading lots of newsgroup and reading Karl Fogel's CVS book, I'm ready to import our corporate codes into cvs. We have multiple clients and each client has multiple projects. How should I set up my repository to best

WinCVS In the way Update Problem

2000-08-17 Thread David L. Martin
Greetings, I'm using WinCVS 1.1b13 on NT in pserver mode against a Solaris 2.6 server running cvs 1.10.8. I have a checkout area in which I only perform "cvs update -Pd" (no editing is done in this area). Occasionally for some directories I get the following error for each file in the

Re: error in cvstreedefault

2000-08-17 Thread Eric Sommerlade
[EMAIL PROTECTED] wrote: keep getting the following errors : Error: $cvstreedefault points to a repository not defined in %CVSROOT (edit your configuration file /usr/local/apache/conf/cvsweb.conf) in cvsweb.conf : %CVSROOT = ( 'Development' = '/cvs',

merging main trunk to branch?

2000-08-17 Thread cchiu
Hi, I am new to CVS and I use WinCVS as the front end on a local repository. I have a module with a main trunk. There is a branch off that trunk that I use as experiment code. Is there a way to merge the lastest changes on the main trunk to the branch code? I don't want the experiment

How to get removed from this mailing list

2000-08-17 Thread John Cyriac
hi, how to get removed from this mailing list? thanks -john -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Thursday, August 17, 2000 10:31 AM To: [EMAIL PROTECTED] Subject: merging main trunk to branch? Hi, I am new to CVS and I use WinCVS as the front

Re: merging main trunk to branch?

2000-08-17 Thread Mike Castle
On Thu, Aug 17, 2000 at 05:30:32PM -, [EMAIL PROTECTED] wrote: Hi, I am new to CVS and I use WinCVS as the front end on a local repository. I have a module with a main trunk. There is a branch off that trunk that I use as experiment code. Is there a way to merge the lastest changes

Re: merging main trunk to branch?

2000-08-17 Thread Stephen Cameron
Mike Castle wrote: So, for your situation, yuou have something like this: Branch point v 0+ Main | +--- Test Now, hopefully you labled the branch point with something when you created the branch. Otherwise, this is a pain. (Allow me to advertise

Pb with module deletion

2000-08-17 Thread Julien
Hello, I'm using a sourceforge account and I'm learning CVS at the same time. My problem stays in deletion of directories in the CVSROOT directory. In my case cvsroot is cvs.somewhere.else:/cvsroot/myrepository. I have now there the following directories : speedshooter (the good one) speeshooter

Re: merging main trunk to branch?

2000-08-17 Thread Derek R. Price
One of the tricks I sometimes use, to avoid having to keep track of branch points, is to only merge from any given branch once. Thus, in this case, I would create branch2 from the main trunk and merge the changes from the first branch forward onto the new branch. cvs up -A# get the main

Re: Fw: Returned mail: User unknown

2000-08-17 Thread Mike Castle
On Thu, Aug 17, 2000 at 04:08:23PM -0700, Sandra Wittenbrock wrote: Some .gif files havn't been being checked in as binary, even though they are specified in the cvswrappers file. (*.gif -k 'b') Where they done with some other capitalization, such as .GIF? I usually do: *.[gG][iI][fF]

Re: cvs history // cvs log

2000-08-17 Thread Derek R. Price
I'm not going to test this, but something like this: cvs co .# get a full repository cvs history -c -u$USER -Dyesterday tmp$$.txt outfile=lineitems-`date +%Y%m%d`.txt while read line; do echo $line $outfile revision=`echo $line |awk '{print $6}'`

RE: Returned mail: User unknown

2000-08-17 Thread Bishop, Murray
Some .gif files havn't been being checked in as binary, even though they are specified in the cvswrappers file. (*.gif -k 'b') I was looking at some of the old messages for this news group, and there is some discussion of the -k 'b' being disabled for wrappers in client/server CVS.

RE: Returned mail: User unknown

2000-08-17 Thread Aditya_Sanghi
I know how to fix the problem though... go to the repository and fix the ,v file in there. do a " cvs update -k 'b' " on the file. [EMAIL PROTECTED] on 18/08/2000 10:08:17

Re: merging main trunk to branch?

2000-08-17 Thread Rich Salz
Again, I think my "get date from file" patch would help here. Do -jbranch:date:.last right?