vote up 1 vote down star
1

How do I prevent a developer from committing changes into a particular branch in CVS?

Recently, a fellow developer committed code into the main branch, leaving me with a lot of rolling back to do ;-( How can I prevent this?

flag

55% accept rate

2 Answers

vote up 1 vote down

Change the access permissions for this user for this particular branch to read only.

Honestly, I don't have a clue. But this may help: CVS Access Control List Extension Patch

link|flag
Could you please tell me how I could do that? A little spoon feeding never hurt anyone ;-) – Preets Jan 20 at 17:19
If you use are on windows make the repository directory ready-only, on linux use chmod to change the access permission. This will prevent "accidental" commits. – Mohit Ranka Jan 20 at 20:08
vote up 1 vote down

Might not be the case but if you're running CVSNT on the server you can simply use the cvs chacl command. See http://cvsnt.org/manual/html/chacl.html for details. I haven't used TortoiseCVS in a while but I guess there might even be a GUI option for that in there (your server would still have to be CVSNT for it to actually work).

Note that TortoiseCVS is just a graphical frontend for the CVSNT client. Your questions will be easier to answer if you supplied some information about your server.

link|flag
thank you for your response, will check the svr details – Preets Feb 8 at 3:52

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.