Re: have finished reading http://cvsbook.red-bean.com/cvsbook.html however, ..

2005-05-31 Thread Sergei Organov
Stuart Cooper [EMAIL PROTECTED] writes: [...] but this is a bit tricky, so making copies, doing cvs update -A and then moving the copies over and then checking in is perfectly acceptable. Did I forget something, or CVS should have been left the original in the file .#hello.c.1.1? -- Sergei.

Re: have finished reading http://cvsbook.red-bean.com/cvsbook.html

2005-05-31 Thread Larry Jones
Stuart Cooper writes: but this is a bit tricky, so making copies, doing cvs update -A and then moving the copies over and then checking in is perfectly acceptable. As long as you're the only one making changes. If there's a possibility of other people checking in changes, too, you need to

Re: have finished reading http://cvsbook.red-bean.com/cvsbook.html

2005-05-31 Thread Sergei Organov
[EMAIL PROTECTED] (Larry Jones) writes: Stuart Cooper writes: but this is a bit tricky, so making copies, doing cvs update -A and then moving the copies over and then checking in is perfectly acceptable. As long as you're the only one making changes. If there's a possibility of

Re: have finished reading http://cvsbook.red-bean.com/cvsbook.html

2005-05-31 Thread Larry Jones
Sergei Organov writes: How is it different from update -A *without* copying anything on top of it? My experience is that update -A would perform regular merge of current changes into the head version. Am I missing something? You're missing the fact that copying an old file over top of the

Re: have finished reading http://cvsbook.red-bean.com/cvsbook.html

2005-05-31 Thread Sergei Organov
[EMAIL PROTECTED] (Larry Jones) writes: Sergei Organov writes: How is it different from update -A *without* copying anything on top of it? My experience is that update -A would perform regular merge of current changes into the head version. Am I missing something? You're missing the

have finished reading http://cvsbook.red-bean.com/cvsbook.html however, ..

2005-05-30 Thread Alex Liberman
My reading comprehension of it must be 100%, because when I tried the following, 1. edit hello.c, add some experimental stuff 2. do a cvs commit of above, it tells me version is now 1.2 from 1.1 3. I revert back to non-experimental version of hello.c like so, cvs update -r 1.1 hello.c 4. put

Re: have finished reading http://cvsbook.red-bean.com/cvsbook.html however, ..

2005-05-30 Thread Stuart Cooper
Hi Alex, My reading comprehension of it must be 100%, because when I tried the following, 1. edit hello.c, add some experimental stuff 2. do a cvs commit of above, it tells me version is now 1.2 from 1.1 3. I revert back to non-experimental version of hello.c like so, cvs update -r

Re: have finished reading http://cvsbook.red-bean.com/cvsbook.html however, ..

2005-05-30 Thread Alex Liberman
ok, calmed down, re-read: http://cvsbook.red-bean.com/cvsbook.html#Examining%20And%20Reverting%20Changes and good to go :D On Mon, May 30, 2005 at 07:00:55PM -0700, Alex Liberman wrote: My reading comprehension of it must be 100%, because when I tried the following, 1. edit hello.c, add