CVS Checkout

2001-03-09 Thread Jouni Kylä-Nikkilä
Hi! I was wondering is there a way to prevent CVS checkout to create root directory named "test" (test is the name of my module). Ie. test source classes And test is module name i created. If i ask cvs to do checkout of test it creates test-directory also in to my harddrive and i d

RE: tag limits?

2001-03-09 Thread Mark Hewitt
This is the way I advocate CVS usage. We use tags of the form 'Build-MMDD-nn' then use a 'Release-NN_MM_XX' tag at the point of release. #!/mjh -Original Message- From: Charles Medcoff [mailto:[EMAIL PROTECTED]] Sent: 02 March 2001 02:05 To: [EMAIL PROTECTED] Subject: tag limits? H

subcribe

2001-03-09 Thread Bhaskar Juda
Please subscribe ___ Info-cvs mailing list [EMAIL PROTECTED] http://mail.gnu.org/mailman/listinfo/info-cvs

Re: CVS Checkout

2001-03-09 Thread Larry Jones
=?iso-8859-1?Q?Jouni_Kyl=E4-Nikkil=E4?= writes: > > If i ask cvs to do checkout of test it creates test-directory also in to my > harddrive and i don't wan't it to do that. I would like that cvs does not do > that testi-directory, only classes and source into that directory where i > am. With co

RE: WinCVS incorrectly showing locally modified files

2001-03-09 Thread Chuck . Irvine
David, I've done some checking and I do believe we have the same problem. I'm sharing work areas between WinCVS and Cygwin (is that what you meant?). For most everything, I use the command line cvs from a bash shell. Every now and then, I pull up WinCVS, mostly to graph a file's revision tree

Re: WinCVS incorrectly showing locally modified files

2001-03-09 Thread Larry Jones
David L. Martin writes: > > Unix: Fri Jan 5 18:09:51 2001 > WinCVS: Fri Jan 05 18:09:51 2001 The C Standard clearly requires the space, not a zero, but it's easy enough to check for, so I've added code to CVS to fixup the timestamp if it's got a leading zero. (I don't know if that will help Wi

checkout ontop of otherwise installed source

2001-03-09 Thread Brian Hughes
Hi. If I have installed something from a tarball (it's a web app, a bunch of php mostly) and then I do a checkout ontop of it, will CVS work right? The context is I am envisaging distributing something as a tarball, and then later those who like the app and wanted to develop it would get a CVS

Re: checkout ontop of otherwise installed source

2001-03-09 Thread Larry Jones
Brian Hughes writes: > > If I have installed something from a tarball (it's a web app, a bunch of > php mostly) and then I do a checkout ontop of it, will CVS work right? Maybe. Sort-of. Sometimes. In other words, no. > The context is I am envisaging distributing something as a tarball, and

cvs update: move away xyz; it is in the way

2001-03-09 Thread Chad Loder
Hello. I'm getting inexplicable messages when updating my CVS sources: cvs update: move away foo.c; it is in the way where foo.c is a file that's still in the archive, whose sandbox version is up-to-date w.r.t. the repository version, and so on...I've never touched the thing. I saw some posts i

Re: update -jx -jy gives conflict on $Id$

2001-03-09 Thread Eric Siegerman
On Thu, Mar 08, 2001 at 04:22:16PM -0800, Stephen Rasku wrote: > Mike Castle wrote: > > > >On Thu, Mar 08, 2001 at 11:15:52AM -0800, Stephen Rasku wrote: > >> Why is this [that -kk during merge is sticky] a problem? > >> You can always do "cvs update -A" after you have checked in > >> your changes

Re: update -jx -jy gives conflict on $Id$

2001-03-09 Thread Mike Castle
On Thu, Mar 08, 2001 at 04:22:16PM -0800, Stephen Rasku wrote: > That shouldn't apply in this case since he was attempting a merge of, > apparently, a .c file. You can't merge binary files with CVS. cvs up -kk -jb1 -jb2 make make test test fails... hmmm. oh... broken binary file that wasn'

How to set permissions on the repository ?

2001-03-09 Thread Pascal J. Bourguignon
I get: Permission denied. cvs [update aborted]: end of file from server (consult above messages if any) How permissions must be set up? A search for "Permission denied" on http://www.cvshome.org/ did not produce anything useful. There's two developers, `andre' & `pascal', both in the `regu

cygwin cvs.exe appends ^m to checked out files

2001-03-09 Thread Chuck . Irvine
I've just noticed that cvs.exe that comes with cygwin checks out cvs controlled files with the dos line endings, i.e. each line has a ^M at the end. This can be verified this by invoking "cat -v" on a checked out file. When I installed cygwin, I specified unix line endings. Is there a way to g

Re: cvs update: move away xyz; it is in the way

2001-03-09 Thread Mike Castle
On Fri, Mar 09, 2001 at 11:41:09AM -0800, Chad Loder wrote: > Hello. I'm getting inexplicable messages when updating > my CVS sources: > > cvs update: move away foo.c; it is in the way > > where foo.c is a file that's still in the archive, > whose sandbox version is up-to-date w.r.t. the reposit

Re: cvs update: move away xyz; it is in the way

2001-03-09 Thread Larry Jones
Chad Loder writes: > > cvs update: move away foo.c; it is in the way > > where foo.c is a file that's still in the archive, > whose sandbox version is up-to-date w.r.t. the repository > version, and so on...I've never touched the thing. That message indicates that CVS thinks the sandbox file di

Re: cvs update: move away xyz; it is in the way

2001-03-09 Thread Gary Heuston
In our case this happened when we tried to check out a file that existed in the developers staging area but didn't have anything in the Entries file associated with it. This could be happening because a file was copied manually into the area and then you tried to update it? In this case I would

Re: cygwin cvs.exe appends ^m to checked out files

2001-03-09 Thread Earnie Boyd
[EMAIL PROTECTED] wrote: > > I've just noticed that cvs.exe that comes with cygwin checks out cvs > controlled files with the dos line endings, i.e. each line has a ^M at > the end. This can be verified this by invoking "cat -v" on a checked > out file. When I installed cygwin, I specified unix l

Re: checkout ontop of otherwise installed source

2001-03-09 Thread Brian Hughes
At 02:26 PM 3/9/2001 -0500, you wrote: >Brian Hughes writes: > > > > If I have installed something from a tarball (it's a web app, a bunch of > > php mostly) and then I do a checkout ontop of it, will CVS work right? > >Maybe. Sort-of. Sometimes. In other words, no. Well... suppose that diggin

Re: checkout ontop of otherwise installed source

2001-03-09 Thread Larry Jones
Brian Hughes writes [quoting me quoting him]: > > > > If I have installed something from a tarball (it's a web app, a bunch of > > > php mostly) and then I do a checkout ontop of it, will CVS work right? > > > >Maybe. Sort-of. Sometimes. In other words, no. > > Well... suppose that digging ou

Re: checkout ontop of otherwise installed source

2001-03-09 Thread Larry Jones
Brian Hughes writes: > > So... another question is, if I start someone off with anonymous CVS, and > then they decide Yeah Boy I Wanna Contribute, is it messy & clumsy to > change them to a new username with commit privileges? They would be using > the repository via pserver. It depends on h

RE: cygwin cvs.exe appends ^m to checked out files

2001-03-09 Thread Chuck . Irvine
Hello Earnie. The output of cygcheck is attached. Thanks. Chuck > cygcheck -s -r -v Cygnus Win95/NT Configuration Diagnostics Current System Time: Fri Mar 9 15:04:13 2001 WinNT Ver 4.0 build 1381 Service Pack 4 Path: /chuck/cvshome/setstools/bin /cygdrive/c/programs/emacs-20.7/bin

Re: How to set permissions on the repository ?

2001-03-09 Thread Larry Jones
Pascal J. Bourguignon writes: > > host2% CVS_RSH=ssh \ >cvs -d :ext:host1:/home/andre/cvsroot checkout -rAR-1 calc_codes > cvs server: Updating calc_codes > U calc_codes/Makefile [...] > > host2% cd cacl_codes > > host2% cvs update -rAR-1 > Permission denied. > cvs [update aborted]: en

Re: checkout ontop of otherwise installed source

2001-03-09 Thread Brian Hughes
>If you're going to allow anonymous CVS access, the best way to do this >is to have the tarball be an anonymously checked-out working directory >complete with metadata in CVS subdirectories. If you're not going to >allow anonymous access, then it's probably best to make interested >people do a f

Re: cvs update: move away xyz; it is in the way

2001-03-09 Thread Chad Loder
Gary, This is not the case. Yesterday, I blew away my sandbox (including all the CVS/ subdirectories) and did a fresh cvs update. Today, having not touched any of the source files, I do an update and get the messages I described. Now, changes maybe HAVE been made to the repository by other devel

Re: cygwin cvs.exe appends ^m to checked out files

2001-03-09 Thread Earnie Boyd
[EMAIL PROTECTED] wrote: > > Hello Earnie. The output of cygcheck is attached. Thanks. Chuck > > > cygcheck -s -r -v > Are you using the Cygwin version of cvs? `cygcheck cvs'? > Cygnus Win95/NT Configuration Diagnostics > Current System Time: Fri Mar 9 15:04:13 2001 > > WinNT Ver 4.0 build

Re: WinCVS incorrectly showing locally modified files

2001-03-09 Thread Alexandre Parenteau
Larry, Thanks, it's an old time bug ! When is the next release for cvs ? alex. - Original Message - From: "Larry Jones" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Cc: <[EMAIL PROTECTED]>; <[EMAIL PROTECTED]> Sent: Friday, March 09, 2001 11:24 AM Subject: Re: WinCVS incorrectly showing

Re: cvs update: move away xyz; it is in the way

2001-03-09 Thread Gary Heuston
The reason this error is popping up is CVS is detecting a difference between what the Entries file says and whats actually sitting in the directory. You might want to manually examine your Entries file for that directory (or any you are having a problem with) and see what the differences are...as

Re: cvs update: move away xyz; it is in the way

2001-03-09 Thread Chad Loder
Hi Larry. Let's take an example directory from my sandbox. Here is the result of 'cvs update -dP': cvs server: Updating shared/java/com/rapid7/net/http cvs update: move away shared/java/com/rapid7/net/http/HTTPClient.java; it is in the way (yada yada yada, repeat message for each

Re: cvs update: move away xyz; it is in the way

2001-03-09 Thread Chad Loder
Yeah, I think I did a checkout (not an update) after I blew it away. c At 04:00 PM 3/9/2001 -0600, you wrote: >The reason this error is popping up is CVS is detecting a difference between >what the Entries file says and whats actually sitting in the directory. You >might want to manual

conflict

2001-03-09 Thread yuchan . kim
How do you fix a conflict on WinCVS before checking it in?  I know based on CVS, you fix the problem and commit the file, but using WinCVS, there doesn't seem to be way to check to see where the conflict is and fix the error.

Repository recovery and archiving

2001-03-09 Thread Jesus M. Salvo Jr.
I am thinking of using CVS as a repository for an internal process for a client. The files are a combination of text and binary files. However, they are under a penalty clause such that if they dont deliver the data within the specified time in each day, they get penalised. Therefore, restoring

GRAND OPENING www.tooltoad.com GRAND OPENING

2001-03-09 Thread www.tooltoad.com
www.tooltoad.com www.tooltoad.com www.tooltoad.com HELLO , Please visit us at the GRAND OPENING of www.tooltoad.com Come and see our ROCK BOTTOM pennies on the dollar pricing . We sell electronics , housewares , security items , tools , and much more .