pierre <[EMAIL PROTECTED]> wrote: > Hi I want to use CVS for my project, olso I make and cvs init an cvs > import .... for the first init. > My problem is that I must be root for make a checkout, and all the files > are owned root. I must change the owner for edit them. > How make and cvs import in not administrateur login ?
Hmmm, "root" sounds like Unix and "administrateur" sounds like Windows... Assuming a Unix-oid box below. You must have done the init and the import as root. If you have only one normal user, just change the ownership of your $CVSROOT tree to him, recursively. If you have many users, create a "cvs" group and put all your users in that group; for symmetry, create also a *user* "cvs" and put him in the cvs group; change the ownership of all *directories* in the $CVSROOT tree to user cvs, group cvs, and change the *directory* permissions to 02775 (owner rwx, group rwx, other r-x and setgid). The file permissions are probably 0444 and can stay that way. It's the directory permissions that matter most. -- pa at panix dot com _______________________________________________ Info-cvs mailing list [EMAIL PROTECTED] http://lists.gnu.org/mailman/listinfo/info-cvs
