Re: newbie question on initializing repository

2004-06-17 Thread Bret A Cooper
:17:10 -0400 From: [EMAIL PROTECTED] Subject: RE: newbie question on initializing repository To: [EMAIL PROTECTED] In this case, I'd import a blank project, and then use cvs add in a script to add the files, using the -kb option accordingly. Here's a c-shell pseudo-code # Assume *.h and *.cpp

Re: newbie question on initializing repository

2004-06-08 Thread Spiro Trikaliotis
Hello, * On Mon, Jun 07, 2004 at 05:34:02PM -0400 Larry Jones wrote: However, I now believe its not that simple, as the binary files(only) must be initialized with the -kb option. Is that correct? If so, any suggestions on the simplest/easiest to go about this? If you can distinguish

RE: newbie question on initializing repository

2004-06-07 Thread Christopher.Fouts
Title: Message In this case, I'd import a blank project, and then use "cvs add" in a script to add the files, using the -kb option accordingly. Here's a c-shellpseudo-code # Assume *.h and *.cpp files are text files, and the rest are binary files... for f in `find .`; then if [ -f $f

Re: newbie question on initializing repository

2004-06-07 Thread Larry Jones
Bret A Cooper writes: My original plan was to run the cvs init command from the topmost directory and be done. I think you mean cvs import -- init just creates a repository, it does not populate it with user files. However, I now believe its not that simple, as the binary files(only) must