Checkout without creating cvs directory

2001-04-13 Thread Erwin Ambrosch
Hi, may I ask one question please. It is possible to do a 'checkout' on a module, without creating the cvs directories in the working directory. Thank's Erwin ___ Info-cvs mailing list [EMAIL PROTECTED] http://mail.gnu.org/mailman/listinfo/info-cvs

Re: CVS bashing?

2001-04-13 Thread Paul Sander
The algorithm that CVS and RCS use to identify the ancestor is pretty simple: Scanning the version numbers of the contributors, find the longest common prefix with respect to the component numbers. If the merge were to augment the CVS metadata to enable shortening the distances between the

Re: Checkout without creating cvs directory

2001-04-13 Thread Donald Sharp
cvs export. But this only copies the source out. You would be unable to checkin any of the changes that you might make. donald On Fri, Apr 13, 2001 at 10:53:53AM +0200, Erwin Ambrosch wrote: Hi, may I ask one question please. It is possible to do a 'checkout' on a module, without

commit -m Line One\rLineTwo

2001-04-13 Thread James A. N. Stauffer
How do I run commit and give a two line message? = =o o o o o o o . . . __ _===_||___ o _ | James A. N. Stauffer | | Stauffer_James | .][__n_n_|DD[ | Spam food: [EMAIL PROTECTED] | | @yahoo.com |

RE: commit -m Line One\rLineTwo

2001-04-13 Thread Gianni Mariani
It seems this depends more on your shell than it does cvs. Using tcsh you need to do so: cvs commit -m "foo\ bar" tcsh requires an escape ('\') for each newline withing a quote. On bash you do: cvs commit -m "foo bar"

Re: rename question -- urgent!!

2001-04-13 Thread Larry Jones
David L. Martin writes: The branch A change to old.txt will be disregarded in the merge to the trunk since old.txt no longer exists there. It won't be completely disreguarded: you'll get an error message telling you that old.txt does not exist but is present on branch A. -Larry Jones

can I have the same working dir for different modules?

2001-04-13 Thread Rares Pop
Hi all, I hope this is not a dumb question, but being new to cvs I need help on the following matter: I have some web components, each of them has a directory structure of its own. I want to be to checkout a module composed from several components all of them to have the same working

can I have the same working dir for different modules?

2001-04-13 Thread Rares Pop
Hi all, I hope this is not a dumb question, but being new to cvs I need help on the following matter: I have some web components, each of them has a directory structure of its own. I want to be to checkout a module composed from several components all of them to have the same working directory

Re: can I have the same working dir for different modules?

2001-04-13 Thread Donald Sharp
no. donald On Fri, Apr 13, 2001 at 07:18:53PM +, Rares Pop wrote: Hi all, I hope this is not a dumb question, but being new to cvs I need help on the following matter: I have some web components, each of them has a directory structure of its own. I want to be to checkout a module

CVS binary files

2001-04-13 Thread Michael Hannemann
I was reading your CVS book on-line, and have run into a problem with my own local implementation. Binary files. What I really want to do, I think, is tell CVS to never, ever do line-ending translations, and never to keyword expansions in the files. Is editing the cvswrappers file on the

Re: CVS bashing?

2001-04-13 Thread Mike Castle
On Thu, Apr 12, 2001 at 08:34:33AM -1000, Joseph Dane wrote: "Mike" == Mike Castle [EMAIL PROTECTED] writes: Mike As I said in an earlier post, this can be scripted around. can you give me an idea as to what such a script might look like? wouldn't there have to be some sort of 'database'

Can we find users working on module?

2001-04-13 Thread Prakash Ranade
Hello all, I would like to find list of users working on different module, Is that something I can do without checking out each module ? Thanks in Advance. - Prakash ___ Info-cvs mailing list [EMAIL PROTECTED]

Update error

2001-04-13 Thread Anita Chacko
Hi A developer is getting a cvs error as follows when he tried to update using Wincvs.We have a UNIX server and windows client. almost at the end the update stops at a directory and he gets this error cannot login as local user 'his name' and remote user 'another name' update aborted:Permission

undefined reference to `res_search' w/ krb5 cvs

2001-04-13 Thread Ross Smith
I've installed krb5-1.2.2.tar.gz from http://web.mit.edu/network/kerberos-form.html. In compiling cvs 1.11, I get the following error: gcc add.o ... ../lib/libcvs.a ../diff/libdiff.a -lz -lgssapi_krb5 -lkrb5 -lcrypto -lcom_err -L/usr/local/lib -lk5crypto -o cvs

Re: -t/-f in cvswrappers

2001-04-13 Thread Rex_Jolliff
DAve Goodrich [EMAIL PROTECTED] on 04/13/2001 12:03:25 PM

Re: -t/-f in cvswrappers

2001-04-13 Thread DAve Goodrich
on 4/13/01 12:26 PM, [EMAIL PROTECTED] at [EMAIL PROTECTED] wrote: on 4/12/01 4:36 PM, Larry Jones at [EMAIL PROTECTED] wrote: DAve Goodrich writes: Hello all. I'm running into a problem with clients that send files to the repository with Mac or Win file endings. What clients are these?

general organization of CVS modules

2001-04-13 Thread Fran Fabrizio
Hello all, I have a couple of general questions. 1. Say I have a web project that consists of some CGI scripts and some static pages. The CGI scripts are in /usr/local/apache/cgi-bin/, the static pages are in /usr/local/apache/htdocs. I want to make it all one module since logically they

Tagging a sticky file?

2001-04-13 Thread David Luchin
This seems like a simple enough question, but I don't find and answer to it in either Cederqvist or Fogel (and faq.cvshome.org doesn't seem happy in general). If I have a file in my repository with a sticky tag (NOT a branch), and I add a tag, will that tag be associated with the sticky revision

RE: Update error

2001-04-13 Thread Jerry Nairn
The user probably has one directory which was either copied from another user's workspace, or checked out into that workspace by a different user. Each directory has associated with it the method of getting updates from the repository. This copied directory is telling cvs to use a different user

RE: undefined reference to `res_search' w/ krb5 cvs FIXED!

2001-04-13 Thread Ross Smith
From: Kev [mailto:[EMAIL PROTECTED]] /usr/local/lib/libkrb5.a(hst_realm.o): In function `krb5_try_realm_txt_rr': hst_realm.o(.text+0x185): undefined reference to `res_search' Does anyone know how to resolve this? You probably need to add -lresolv to you link line--no pun

Re: Tagging a sticky file?

2001-04-13 Thread Mike Castle
On Fri, Apr 13, 2001 at 02:46:05PM -0500, David Luchin wrote: If I have a file in my repository with a sticky tag (NOT a branch), and Files in the in repository doesn't have sticky tags. Files in your workarea do. If you do something like: cvs update -r foo Then the sticky tag is placed on

Re: undefined reference to `res_search' w/ krb5 cvs

2001-04-13 Thread Brian Kantor
If you have the newest versions of the BIND name server installed, many elements formerly found in the resolver library have moved to /usr/local/bind/lib/libbind.a which may need to be included in the linker command. - Brian /usr/local/lib/libkrb5.a(hst_realm.o): In function

RE: -t/-f in cvswrappers

2001-04-13 Thread Jerry Nairn
From: DAve Goodrich [mailto:[EMAIL PROTECTED]] Sent: Friday, April 13, 2001 12:43 PM on 4/13/01 12:26 PM, [EMAIL PROTECTED] at [EMAIL PROTECTED] wrote: the line endings should get translated by the client. If they are not being translated, then there is a problem with that client.

more questions about CVS and binary files

2001-04-13 Thread Michael Hannemann
If I'm making the system not munge binary files by adding lines in the cvswrappers file like *.dxl-k 'b' -m 'COPY' will the CVS system ever warn me if someone else has changed my binary file before I over-write it? Michael Hannemann [EMAIL PROTECTED] [EMAIL PROTECTED]

not-ignoring .exe files

2001-04-13 Thread Michael Hannemann
I'm trying to stop CVS from ignoring .exe/.EXE files by default on import. I know I could include this on the command line whenver I import, which shouldn't be too often, but I also know that I'll simply fail to remember this when the time comes. So I took what I understood to be the list of

Re: more questions about CVS and binary files

2001-04-13 Thread Larry Jones
Michael Hannemann writes: *.dxl-k 'b' -m 'COPY' will the CVS system ever warn me if someone else has changed my binary file before I over-write it? Of course. When you do an update, you'll see something like: cvs update: Updating . U test.dxl cvs update:

Handling multiple merges (was RE: CVS bashing?)

2001-04-13 Thread Keith Hearn
Mike, Below, one of the commands you say to run is "cvs tags". I don't think that's right. At least, it's not documented in Cederqvist, and it's not implemented in my version 1.10.7. As you said, it's been a while since you used cvs, so I suspect you've got the command name mixed up. Any idea

Remove CVS lock error

2001-04-13 Thread Howard Zhou
Hi, All, Can someone tell me what caused this remove lock dir error below? It seems to go away if multiple attempts. What can I do to avoid this error? Thanks. No. 1/3 Module Update - psr Current Directory: /sw/CVS/builds/psrcvs/sim_netbsd/DEBUG/main Command = cvs -d /sw/CVS/repos/psrcvs

Re: general organization of CVS modules

2001-04-13 Thread Mike Klinke
Rather than try to marry CVS and your production structure why not use some intermediate script or batch/JCL system to translate from whatever CVS structure you find most convenient to whatever your production structure needs are? Seems like you could have the best of both worlds. Regards, Mike

Re: Handling multiple merges (was RE: CVS bashing?)

2001-04-13 Thread Larry Jones
Keith Hearn writes: Below, one of the commands you say to run is "cvs tags". I don't think that's right. At least, it's not documented in Cederqvist, and it's not implemented in my version 1.10.7. As you said, it's been a while since you used cvs, so I suspect you've got the command name

Re: not-ignoring .exe files

2001-04-13 Thread Larry Jones
Michael Hannemann writes: So I took what I understood to be the list of things CVS ignores by default and put that in a new cvsignore file in the CVSROOT, checking it in and watching it update the administrative databases. At the very beginning of the file, I placed a !, hoping this