Skip to search.
info-cvs · installing and using CVS

Group Information

  • Members: 1091
  • Category: Development
  • Founded: Aug 7, 1998
  • Language: English
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Message search is now enhanced, find messages faster. Take it for a spin.

Messages

  Messages Help
Advanced
Messages 19563 - 19592 of 26776   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
19563 Peter Kennard
peterk@... Send Email
Feb 1, 2000
8:17 am
... Right, this is what is desired. The reason for 770 was because this was the default that the admins install of CVS gave to the ,v files I figured that's...
19564 Tim Endres
time@... Send Email
Feb 1, 2000
8:47 am
... There is an issue here with adding locks to CVS. The client/server protocol does not have any mechanism for supporting locks. What I mean to say is that ...
19565 Win32 M$
wm_rclick@... Send Email
Feb 1, 2000
9:43 am
Hi Tim, ... Change the protocol? Extend the "status"? I don't know, I am not much familiar with the CVS code (I did took a look thought, it is scary: full of ...
19566 Paul Sander
paul@... Send Email
Feb 1, 2000
11:16 am
... I don't mind special-casing certain commands in which the default case may lead the unsuspecting user down a road where significant recovery is needed if...
19567 Paul Sander
paul@... Send Email
Feb 1, 2000
11:21 am
... I'm in the camp that believes that "cvs add" should operate only on what it's told explicitly to add. I have no problem with extending the current ...
19568 Tony Hoyle
tmh@... Send Email
Feb 1, 2000
12:01 pm
... Here we enforce that everyone *must* do an 'update' before a 'commit', then they resolve conflicts on their own machine before committing to the the...
19569 Tony Hoyle
tmh@... Send Email
Feb 1, 2000
12:01 pm
Is there a command which will give a concise list of the status of files in a directory? 'cvs status' is very verbose, and the help doesn't list any command...
19570 Martin Schröder
ms@... Send Email
Feb 1, 2000
12:47 pm
... #!/bin/sh # param: list of files to test cvs -Q status $@ |egrep Status:|egrep -v date ... So get yourself a grep. It's available from a friendly gnu...
19571 Gabor Z. Papp
gzp@... Send Email
Feb 1, 2000
12:58 pm
Hi, I use the latest cvs tree of cvs. Connect to net via dialup ppp. The connection is broken since ~6 hours, and 'cvs checkout' hanging at this moment without...
19572 Win32 M$
wm_rclick@... Send Email
Feb 1, 2000
2:10 pm
Hi Tony, ... (stuff deleted) ... Hi Martin, ... FORGET about the grep - get yourself the WinCvs + TCL. Then you will find the Macros submenu and 'Fast Search...
19573 Noel L Yap
yap_noel@... Send Email
Feb 1, 2000
2:37 pm
... I'm currently working on both of these problems. ... This one's attributed to some laziness on the part of the original programmer (the editors attribute...
19574 Noel L Yap
yap_noel@... Send Email
Feb 1, 2000
2:51 pm
If there are, in fact, physical conflicts within the files, CVS will not allow the commit (unless there's a bug) -- it'll force a "cvs up" beforehand. If the...
19575 Noel L Yap
yap_noel@... Send Email
Feb 1, 2000
3:21 pm
... Well, if you limit the lookup only to one parent directory, there's no danger, but the solution isn't intuitive. That is, it's not general -- I would...
19576 Noel L Yap
yap_noel@... Send Email
Feb 1, 2000
4:08 pm
... Or they can explicitly tell "cvs add" which files to add. Noel...
19577 Tony Hoyle
tmh@... Send Email
Feb 1, 2000
4:17 pm
... I have this, although I was rather trying to avoid installing TCL on my boss' machine as he has enough trouble trying to understand WinCVS to start with......
19578 Noel L Yap
yap_noel@... Send Email
Feb 1, 2000
4:23 pm
... Precisely. ... I still say that the purpose of locks is to prevent when necessary concurrent development. This goal can be achieved with communication via...
19579 Cameron, Steve
Steve.Cameron@... Send Email
Feb 1, 2000
4:25 pm
try "cvs -nq update" The output is very concise, perhaps a bit too concise.. instead of "Modified", "Up-to-date", "Conflict" you get: A xxx.y M foo.c C foo.,h ...
19580 Noel L Yap
yap_noel@... Send Email
Feb 1, 2000
4:26 pm
... left? ... even ... most ... limit ... Nowhere, but you did respond with "The core functionality that perhaps the majority of users actually use" which...
19581 Noel L Yap
yap_noel@... Send Email
Feb 1, 2000
4:32 pm
... But the only reason you've done "cvs add dir" is 'cos it's been hacked to create the directory in the repository. This hack should be removed. ... How...
19582 Noel L Yap
yap_noel@... Send Email
Feb 1, 2000
4:49 pm
... Our code here has lots of goto's. It's not what you use, it's how you use it. Look through the code some more until you understand it -- it's cleaner than...
19583 Noel L Yap
yap_noel@... Send Email
Feb 1, 2000
4:55 pm
... of ... Then why not apply the same "fix" to "cvs add" (ie put "add -l" in .cvsrc)? Noel...
19584 Noel L Yap
yap_noel@... Send Email
Feb 1, 2000
5:36 pm
... "cvs add -l" should fill your need unless you're talking about "cvs add dir" keeping its old hack behaviour of creating an empty directory in the repo. If...
19585 rjiang@... Send Email Feb 1, 2000
5:57 pm
Subscribe...
19586 David Thornley
David.Thornley@... Send Email
Feb 1, 2000
5:57 pm
... Could we get a ".cvspayattentionto" file or something like that? When it's time to add files, we usually want to add those ending in .C or .h or .ad or...
19587 Greg A. Woods
woods@... Send Email
Feb 1, 2000
5:59 pm
[ On Tuesday, February 1, 2000 at 14:39:22 (CST), Win32 M$ wrote: ] ... People need to try much harder to make their points explicit. This is a forum where...
19588 Tim Endres
time@... Send Email
Feb 1, 2000
6:06 pm
... And what I am trying to say is that someone has to code this, and it is not trivial. Further, there are *far* more important things to code. So, unless you...
19589 David Thornley
David.Thornley@... Send Email
Feb 1, 2000
6:11 pm
... I always use cvs status | grep Status or something like that. It gives me the exact information you're asking for, with a few additional words. You could...
19590 dbockenf@... Send Email Feb 1, 2000
6:33 pm
Noel Yap wrote ... ... through ... to ... <snip> ... possibly null set ... could get ... I'm looking for a reality check before I start hacking. Is it really a...
19591 Greg A. Woods
woods@... Send Email
Feb 1, 2000
6:35 pm
[ On Tuesday, February 1, 2000 at 11:07:51 (+0000), Tony Hoyle wrote: ] ... Actually it's CVS that forces everything to be "up-to-date" before the commit can...
19592 Martin Roehrig
M.Roehrig@... Send Email
Feb 1, 2000
6:42 pm
Hi Larry, Your suggestions seem very reasonable to me as far as the entries in the Repository files are concerned! Nevertheless it seems to me that both the...
Messages 19563 - 19592 of 26776   Oldest  |  < Older  |  Newer >  |  Newest
Add to My Yahoo!      XML What's This?

Copyright © 2010 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines NEW - Help