{"id":66,"date":"2004-02-26T22:52:00","date_gmt":"2004-02-26T22:52:00","guid":{"rendered":"http:\/\/bitpost.com\/news\/?p=14"},"modified":"2006-04-26T16:07:28","modified_gmt":"2006-04-26T21:07:28","slug":"the-basics-2","status":"publish","type":"post","link":"https:\/\/bitpost.com\/news\/2004\/the-basics-2\/","title":{"rendered":"CVS Group Management"},"content":{"rendered":"<p>Here&#8217;s a brief example of managing multiple CVS groups, so you can have different groups doing development out of the same CVS repository.<!--more--><\/p>\n<p>In this example&#8230;<\/p>\n<p>&nbsp;&nbsp;&nbsp;the cvs_coders group is used to hold ALL cvs users<\/p>\n<p>&nbsp;&nbsp;&nbsp;wx_coders is a subgroup &#8211; a few members are allowed access to the projects under this group<\/p>\n<p>&nbsp;&nbsp;&nbsp;m is the user that controls the rest of the cvs repository<\/p>\n<p>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;<\/p>\n<p>CVS GROUP PERMISSIONS<\/p>\n<p>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;<\/p>\n<p>&nbsp;&nbsp;&nbsp;groupadd cvs_coders<\/p>\n<p>&nbsp;&nbsp;&nbsp;groupadd wx_coders<\/p>\n<p>&nbsp;&nbsp;&nbsp;pico \/etc\/group<\/p>\n<p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;cvs_coders:x:513:m,corey<\/p>\n<p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;wx_coders:x:514:m,corey<\/p>\n<p>&nbsp;&nbsp;&nbsp;cd \/home\/m\/development<\/p>\n<p>&nbsp;&nbsp;&nbsp;chown -R m:m CVSROOT<\/p>\n<p>&nbsp;&nbsp;&nbsp;chgrp cvs_coders CVSROOT<\/p>\n<p>&nbsp;&nbsp;&nbsp;cd CVSROOT<\/p>\n<p>&nbsp;&nbsp;&nbsp;chgrp -R cvs_coders CVSROOT<\/p>\n<p>&nbsp;&nbsp;&nbsp;chgrp -R wx_coders wxHelloWorld<\/p>\n<p>&nbsp;&nbsp;&nbsp;chgrp -R wx_coders plucker<\/p>\n<p>&#8211;> New cvs users need&#8230;<\/p>\n<p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;a) a valid linux user (for ssh&#8217;ing into repository)<\/p>\n<p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;b) this user must be added to the cvs_coders group<\/p>\n<p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;-> edit \/etc\/group and add the user at the end of the cvs_coders line&#8230;<\/p>\n<p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;c) also add the user to the appropriate existing subgroups<\/p>\n<p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;m&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\u00c2\u00a0 &#8211; for my personal stuff that isn&#8217;t shared<\/p>\n<p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;wx_coders&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&#8211; for Corey and my wxWindows project(s)<\/p>\n<p>&#8211;> To add a new subgroup&#8230;<\/p>\n<p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;a) &#8220;groupadd blah_coders&#8221;<\/p>\n<p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;b) add all users to it in \/etc\/group<\/p>\n<p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;c) create module(s) as &#8220;m&#8221;, then change group to target subgroup<\/p>\n<p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;cd CVSROOT<\/p>\n<p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;chgrp -R [newsubgroup] [newmodule]<\/p>\n<p>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;<\/p>\n","protected":false},"excerpt":{"rendered":"<p>In this example&#8230;<\/p>\n<p>&#038;nbsp&#038;nbsp&#038;nbspthe cvs_coders group is used to hold ALL cvs users<br \/>\n&#038;nbsp&#038;nbsp&#038;nbspwx_coders is a subgroup &#8211; a few members are allowed access to the projects under this group<br \/>\n&#038;nbsp&#038;nbsp&#038;nbspm is the user that controls the rest of the cvs repository<\/p>\n<p>\n&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;<br \/>\nCVS GROUP PERMISSIONS<br \/>\n&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;<\/p>\n<p>&#038;nbsp&#038;nbsp&#038;nbspgroupadd cvs_coders<br \/>\n&#038;nbsp&#038;nbsp&#038;nbspgroupadd wx_coders<br \/>\n&#038;nbsp&#038;nbsp&#038;nbsppico \/etc\/group<br \/>\n&#038;nbsp&#038;nbsp&#038;nbsp&#038;nbsp&#038;nbsp&#038;nbspcvs_coders:x:513:m,corey<br \/>\n&#038;nbsp&#038;nbsp&#038;nbsp&#038;nbsp&#038;nbsp&#038;nbspwx_coders:x:514:m,corey<br \/>\n&#038;nbsp&#038;nbsp&#038;nbspcd \/home\/m\/development<br \/>\n&#038;nbsp&#038;nbsp&#038;nbspchown -R m:m CVSROOT<br \/>\n&#038;nbsp&#038;nbsp&#038;nbspchgrp cvs_coders CVSROOT<br \/>\n&#038;nbsp&#038;nbsp&#038;nbspcd CVSROOT<br \/>\n&#038;nbsp&#038;nbsp&#038;nbspchgrp -R cvs_coders CVSROOT<br \/>\n&#038;nbsp&#038;nbsp&#038;nbspchgrp -R wx_coders wxHelloWorld<br \/>\n&#038;nbsp&#038;nbsp&#038;nbspchgrp -R wx_coders plucker<\/p>\n<p>&#8211;> New cvs users need&#8230;<br \/>\n&#038;nbsp&#038;nbsp&#038;nbsp&#038;nbsp&#038;nbsp&#038;nbspa) a valid linux user (for ssh&#8217;ing into repository)<br \/>\n&#038;nbsp&#038;nbsp&#038;nbsp&#038;nbsp&#038;nbsp&#038;nbspb) this user must be added to the cvs_coders group <br \/>\n&#038;nbsp&#038;nbsp&#038;nbsp&#038;nbsp&#038;nbsp&#038;nbsp&#038;nbsp&#038;nbsp&#038;nbsp-> edit \/etc\/group and add the user at the end of the cvs_coders line&#8230;<br \/>\n&#038;nbsp&#038;nbsp&#038;nbsp&#038;nbsp&#038;nbsp&#038;nbspc) also add the user to the appropriate existing subgroups<\/p>\n<p>&#038;nbsp&#038;nbsp&#038;nbsp&#038;nbsp&#038;nbsp&#038;nbsp&#038;nbsp&#038;nbsp&#038;nbsp&#038;nbsp&#038;nbsp&#038;nbspm&#038;nbsp&#038;nbsp&#038;nbsp&#038;nbsp&#038;nbsp&#038;nbsp&#038;nbsp&#038;nbsp&#038;nbsp&#038;nbsp&#038;nbsp&#038;nbsp  &#8211; for my personal stuff that isn&#8217;t shared<br \/>\n&#038;nbsp&#038;nbsp&#038;nbsp&#038;nbsp&#038;nbsp&#038;nbsp&#038;nbsp&#038;nbsp&#038;nbsp&#038;nbsp&#038;nbsp&#038;nbspwx_coders&#038;nbsp&#038;nbsp&#038;nbsp&#038;nbsp&#038;nbsp&#038;nbsp- for Corey and my wxWindows project(s)<\/p>\n<p>&#8211;> To add a new subgroup&#8230;<br \/>\n&#038;nbsp&#038;nbsp&#038;nbsp&#038;nbsp&#038;nbsp&#038;nbspa) &#8220;groupadd blah_coders&#8221;<br \/>\n&#038;nbsp&#038;nbsp&#038;nbsp&#038;nbsp&#038;nbsp&#038;nbspb) add all users to it in \/etc\/group<br \/>\n&#038;nbsp&#038;nbsp&#038;nbsp&#038;nbsp&#038;nbsp&#038;nbspc) create module(s) as &#8220;m&#8221;, then change group to target subgroup<br \/>\n&#038;nbsp&#038;nbsp&#038;nbsp&#038;nbsp&#038;nbsp&#038;nbsp&#038;nbsp&#038;nbsp&#038;nbsp&#038;nbsp&#038;nbsp&#038;nbspcd CVSROOT<br \/>\n&#038;nbsp&#038;nbsp&#038;nbsp&#038;nbsp&#038;nbsp&#038;nbsp&#038;nbsp&#038;nbsp&#038;nbsp&#038;nbsp&#038;nbsp&#038;nbspchgrp -R [newsubgroup] [newmodule]<\/p>\n<p>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;<\/p>\n","protected":false},"author":2,"featured_media":0,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"_jetpack_newsletter_access":"","_jetpack_dont_email_post_to_subs":false,"_jetpack_newsletter_tier_id":0,"_jetpack_memberships_contains_paywalled_content":false,"_jetpack_feature_clip_id":0,"_jetpack_memberships_contains_paid_content":false,"footnotes":"","jetpack_publicize_message":"","jetpack_publicize_feature_enabled":true,"jetpack_social_post_already_shared":false,"jetpack_social_options":{"image_generator_settings":{"template":"highway","default_image_id":0,"font":"","enabled":false},"version":2},"jetpack_post_was_ever_published":false},"categories":[10],"tags":[],"class_list":["post-66","post","type-post","status-publish","format-standard","hentry","category-tricks-tips-tools"],"aioseo_notices":[],"aioseo_head":"\n\t\t<!-- All in One SEO 4.9.9 - aioseo.com -->\n\t<meta name=\"description\" content=\"In this example... &amp;nbsp&amp;nbsp&amp;nbspthe cvs_coders group is used to hold ALL cvs users &amp;nbsp&amp;nbsp&amp;nbspwx_coders is a subgroup - a few members are allowed access to the projects under this group &amp;nbsp&amp;nbsp&amp;nbspm is the user that controls the rest of the cvs repository --------------------- CVS GROUP PERMISSIONS --------------------- &amp;nbsp&amp;nbsp&amp;nbspgroupadd cvs_coders &amp;nbsp&amp;nbsp&amp;nbspgroupadd wx_coders &amp;nbsp&amp;nbsp&amp;nbsppico \/etc\/group &amp;nbsp&amp;nbsp&amp;nbsp&amp;nbsp&amp;nbsp&amp;nbspcvs_coders:x:513:m,corey &amp;nbsp&amp;nbsp&amp;nbsp&amp;nbsp&amp;nbsp&amp;nbspwx_coders:x:514:m,corey &amp;nbsp&amp;nbsp&amp;nbspcd \/home\/m\/development &amp;nbsp&amp;nbsp&amp;nbspchown -R m:m CVSROOT &amp;nbsp&amp;nbsp&amp;nbspchgrp cvs_coders CVSROOT &amp;nbsp&amp;nbsp&amp;nbspcd CVSROOT &amp;nbsp&amp;nbsp&amp;nbspchgrp -R cvs_coders CVSROOT &amp;nbsp&amp;nbsp&amp;nbspchgrp -R wx_coders wxHelloWorld &amp;nbsp&amp;nbsp&amp;nbspchgrp -R wx_coders plucker --&gt; New cvs users need... &amp;nbsp&amp;nbsp&amp;nbsp&amp;nbsp&amp;nbsp&amp;nbspa) a valid linux user (for ssh&#039;ing into repository) &amp;nbsp&amp;nbsp&amp;nbsp&amp;nbsp&amp;nbsp&amp;nbspb) this user must be added to the cvs_coders group &amp;nbsp&amp;nbsp&amp;nbsp&amp;nbsp&amp;nbsp&amp;nbsp&amp;nbsp&amp;nbsp&amp;nbsp-&gt; edit \/etc\/group and add the user at the end of the cvs_coders line... &amp;nbsp&amp;nbsp&amp;nbsp&amp;nbsp&amp;nbsp&amp;nbspc) also add the user to the appropriate existing subgroups &amp;nbsp&amp;nbsp&amp;nbsp&amp;nbsp&amp;nbsp&amp;nbsp&amp;nbsp&amp;nbsp&amp;nbsp&amp;nbsp&amp;nbsp&amp;nbspm&amp;nbsp&amp;nbsp&amp;nbsp&amp;nbsp&amp;nbsp&amp;nbsp&amp;nbsp&amp;nbsp&amp;nbsp&amp;nbsp&amp;nbsp&amp;nbsp - for my personal stuff that isn&#039;t shared &amp;nbsp&amp;nbsp&amp;nbsp&amp;nbsp&amp;nbsp&amp;nbsp&amp;nbsp&amp;nbsp&amp;nbsp&amp;nbsp&amp;nbsp&amp;nbspwx_coders&amp;nbsp&amp;nbsp&amp;nbsp&amp;nbsp&amp;nbsp&amp;nbsp- for Corey and my wxWindows project(s) --&gt; To add a new subgroup... &amp;nbsp&amp;nbsp&amp;nbsp&amp;nbsp&amp;nbsp&amp;nbspa) &quot;groupadd blah_coders&quot; &amp;nbsp&amp;nbsp&amp;nbsp&amp;nbsp&amp;nbsp&amp;nbspb) add all users to it in \/etc\/group &amp;nbsp&amp;nbsp&amp;nbsp&amp;nbsp&amp;nbsp&amp;nbspc) create module(s) as &quot;m&quot;, then change group to target subgroup &amp;nbsp&amp;nbsp&amp;nbsp&amp;nbsp&amp;nbsp&amp;nbsp&amp;nbsp&amp;nbsp&amp;nbsp&amp;nbsp&amp;nbsp&amp;nbspcd CVSROOT &amp;nbsp&amp;nbsp&amp;nbsp&amp;nbsp&amp;nbsp&amp;nbsp&amp;nbsp&amp;nbsp&amp;nbsp&amp;nbsp&amp;nbsp&amp;nbspchgrp -R [newsubgroup] [newmodule] ---------------------\" \/>\n\t<meta name=\"robots\" content=\"max-image-preview:large\" \/>\n\t<meta name=\"author\" content=\"m\"\/>\n\t<meta name=\"keywords\" content=\"tricks tips tools\" \/>\n\t<link rel=\"canonical\" href=\"https:\/\/bitpost.com\/news\/2004\/the-basics-2\/\" \/>\n\t<meta name=\"generator\" content=\"All in One SEO (AIOSEO) 4.9.9\" \/>\n\t\t<meta property=\"og:locale\" content=\"en_US\" \/>\n\t\t<meta property=\"og:site_name\" content=\"bitpost.com\/news | Note to self\" \/>\n\t\t<meta property=\"og:type\" content=\"article\" \/>\n\t\t<meta property=\"og:title\" content=\"CVS Group Management | bitpost.com\/news\" \/>\n\t\t<meta property=\"og:description\" content=\"In this example... &amp;nbsp&amp;nbsp&amp;nbspthe cvs_coders group is used to hold ALL cvs users &amp;nbsp&amp;nbsp&amp;nbspwx_coders is a subgroup - a few members are allowed access to the projects under this group &amp;nbsp&amp;nbsp&amp;nbspm is the user that controls the rest of the cvs repository --------------------- CVS GROUP PERMISSIONS --------------------- &amp;nbsp&amp;nbsp&amp;nbspgroupadd cvs_coders &amp;nbsp&amp;nbsp&amp;nbspgroupadd wx_coders &amp;nbsp&amp;nbsp&amp;nbsppico \/etc\/group &amp;nbsp&amp;nbsp&amp;nbsp&amp;nbsp&amp;nbsp&amp;nbspcvs_coders:x:513:m,corey &amp;nbsp&amp;nbsp&amp;nbsp&amp;nbsp&amp;nbsp&amp;nbspwx_coders:x:514:m,corey &amp;nbsp&amp;nbsp&amp;nbspcd \/home\/m\/development &amp;nbsp&amp;nbsp&amp;nbspchown -R m:m CVSROOT &amp;nbsp&amp;nbsp&amp;nbspchgrp cvs_coders CVSROOT &amp;nbsp&amp;nbsp&amp;nbspcd CVSROOT &amp;nbsp&amp;nbsp&amp;nbspchgrp -R cvs_coders CVSROOT &amp;nbsp&amp;nbsp&amp;nbspchgrp -R wx_coders wxHelloWorld &amp;nbsp&amp;nbsp&amp;nbspchgrp -R wx_coders plucker --&gt; New cvs users need... &amp;nbsp&amp;nbsp&amp;nbsp&amp;nbsp&amp;nbsp&amp;nbspa) a valid linux user (for ssh&#039;ing into repository) &amp;nbsp&amp;nbsp&amp;nbsp&amp;nbsp&amp;nbsp&amp;nbspb) this user must be added to the cvs_coders group &amp;nbsp&amp;nbsp&amp;nbsp&amp;nbsp&amp;nbsp&amp;nbsp&amp;nbsp&amp;nbsp&amp;nbsp-&gt; edit \/etc\/group and add the user at the end of the cvs_coders line... &amp;nbsp&amp;nbsp&amp;nbsp&amp;nbsp&amp;nbsp&amp;nbspc) also add the user to the appropriate existing subgroups &amp;nbsp&amp;nbsp&amp;nbsp&amp;nbsp&amp;nbsp&amp;nbsp&amp;nbsp&amp;nbsp&amp;nbsp&amp;nbsp&amp;nbsp&amp;nbspm&amp;nbsp&amp;nbsp&amp;nbsp&amp;nbsp&amp;nbsp&amp;nbsp&amp;nbsp&amp;nbsp&amp;nbsp&amp;nbsp&amp;nbsp&amp;nbsp - for my personal stuff that isn&#039;t shared &amp;nbsp&amp;nbsp&amp;nbsp&amp;nbsp&amp;nbsp&amp;nbsp&amp;nbsp&amp;nbsp&amp;nbsp&amp;nbsp&amp;nbsp&amp;nbspwx_coders&amp;nbsp&amp;nbsp&amp;nbsp&amp;nbsp&amp;nbsp&amp;nbsp- for Corey and my wxWindows project(s) --&gt; To add a new subgroup... &amp;nbsp&amp;nbsp&amp;nbsp&amp;nbsp&amp;nbsp&amp;nbspa) &quot;groupadd blah_coders&quot; &amp;nbsp&amp;nbsp&amp;nbsp&amp;nbsp&amp;nbsp&amp;nbspb) add all users to it in \/etc\/group &amp;nbsp&amp;nbsp&amp;nbsp&amp;nbsp&amp;nbsp&amp;nbspc) create module(s) as &quot;m&quot;, then change group to target subgroup &amp;nbsp&amp;nbsp&amp;nbsp&amp;nbsp&amp;nbsp&amp;nbsp&amp;nbsp&amp;nbsp&amp;nbsp&amp;nbsp&amp;nbsp&amp;nbspcd CVSROOT &amp;nbsp&amp;nbsp&amp;nbsp&amp;nbsp&amp;nbsp&amp;nbsp&amp;nbsp&amp;nbsp&amp;nbsp&amp;nbsp&amp;nbsp&amp;nbspchgrp -R [newsubgroup] [newmodule] ---------------------\" \/>\n\t\t<meta property=\"og:url\" content=\"https:\/\/bitpost.com\/news\/2004\/the-basics-2\/\" \/>\n\t\t<meta property=\"article:published_time\" content=\"2004-02-26T22:52:00+00:00\" \/>\n\t\t<meta property=\"article:modified_time\" content=\"2006-04-26T21:07:28+00:00\" \/>\n\t\t<meta name=\"twitter:card\" content=\"summary\" \/>\n\t\t<meta name=\"twitter:title\" content=\"CVS Group Management | bitpost.com\/news\" \/>\n\t\t<meta name=\"twitter:description\" content=\"In this example... &amp;nbsp&amp;nbsp&amp;nbspthe cvs_coders group is used to hold ALL cvs users &amp;nbsp&amp;nbsp&amp;nbspwx_coders is a subgroup - a few members are allowed access to the projects under this group &amp;nbsp&amp;nbsp&amp;nbspm is the user that controls the rest of the cvs repository --------------------- CVS GROUP PERMISSIONS --------------------- &amp;nbsp&amp;nbsp&amp;nbspgroupadd cvs_coders &amp;nbsp&amp;nbsp&amp;nbspgroupadd wx_coders &amp;nbsp&amp;nbsp&amp;nbsppico \/etc\/group &amp;nbsp&amp;nbsp&amp;nbsp&amp;nbsp&amp;nbsp&amp;nbspcvs_coders:x:513:m,corey &amp;nbsp&amp;nbsp&amp;nbsp&amp;nbsp&amp;nbsp&amp;nbspwx_coders:x:514:m,corey &amp;nbsp&amp;nbsp&amp;nbspcd \/home\/m\/development &amp;nbsp&amp;nbsp&amp;nbspchown -R m:m CVSROOT &amp;nbsp&amp;nbsp&amp;nbspchgrp cvs_coders CVSROOT &amp;nbsp&amp;nbsp&amp;nbspcd CVSROOT &amp;nbsp&amp;nbsp&amp;nbspchgrp -R cvs_coders CVSROOT &amp;nbsp&amp;nbsp&amp;nbspchgrp -R wx_coders wxHelloWorld &amp;nbsp&amp;nbsp&amp;nbspchgrp -R wx_coders plucker --&gt; New cvs users need... &amp;nbsp&amp;nbsp&amp;nbsp&amp;nbsp&amp;nbsp&amp;nbspa) a valid linux user (for ssh&#039;ing into repository) &amp;nbsp&amp;nbsp&amp;nbsp&amp;nbsp&amp;nbsp&amp;nbspb) this user must be added to the cvs_coders group &amp;nbsp&amp;nbsp&amp;nbsp&amp;nbsp&amp;nbsp&amp;nbsp&amp;nbsp&amp;nbsp&amp;nbsp-&gt; edit \/etc\/group and add the user at the end of the cvs_coders line... &amp;nbsp&amp;nbsp&amp;nbsp&amp;nbsp&amp;nbsp&amp;nbspc) also add the user to the appropriate existing subgroups &amp;nbsp&amp;nbsp&amp;nbsp&amp;nbsp&amp;nbsp&amp;nbsp&amp;nbsp&amp;nbsp&amp;nbsp&amp;nbsp&amp;nbsp&amp;nbspm&amp;nbsp&amp;nbsp&amp;nbsp&amp;nbsp&amp;nbsp&amp;nbsp&amp;nbsp&amp;nbsp&amp;nbsp&amp;nbsp&amp;nbsp&amp;nbsp - for my personal stuff that isn&#039;t shared &amp;nbsp&amp;nbsp&amp;nbsp&amp;nbsp&amp;nbsp&amp;nbsp&amp;nbsp&amp;nbsp&amp;nbsp&amp;nbsp&amp;nbsp&amp;nbspwx_coders&amp;nbsp&amp;nbsp&amp;nbsp&amp;nbsp&amp;nbsp&amp;nbsp- for Corey and my wxWindows project(s) --&gt; To add a new subgroup... &amp;nbsp&amp;nbsp&amp;nbsp&amp;nbsp&amp;nbsp&amp;nbspa) &quot;groupadd blah_coders&quot; &amp;nbsp&amp;nbsp&amp;nbsp&amp;nbsp&amp;nbsp&amp;nbspb) add all users to it in \/etc\/group &amp;nbsp&amp;nbsp&amp;nbsp&amp;nbsp&amp;nbsp&amp;nbspc) create module(s) as &quot;m&quot;, then change group to target subgroup &amp;nbsp&amp;nbsp&amp;nbsp&amp;nbsp&amp;nbsp&amp;nbsp&amp;nbsp&amp;nbsp&amp;nbsp&amp;nbsp&amp;nbsp&amp;nbspcd CVSROOT &amp;nbsp&amp;nbsp&amp;nbsp&amp;nbsp&amp;nbsp&amp;nbsp&amp;nbsp&amp;nbsp&amp;nbsp&amp;nbsp&amp;nbsp&amp;nbspchgrp -R [newsubgroup] [newmodule] ---------------------\" \/>\n\t\t<script type=\"application\/ld+json\" class=\"aioseo-schema\">\n\t\t\t{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/bitpost.com\\\/news\\\/2004\\\/the-basics-2\\\/#article\",\"name\":\"CVS Group Management | bitpost.com\\\/news\",\"headline\":\"CVS Group Management\",\"author\":{\"@id\":\"https:\\\/\\\/bitpost.com\\\/news\\\/author\\\/m\\\/#author\"},\"publisher\":{\"@id\":\"https:\\\/\\\/bitpost.com\\\/news\\\/#person\"},\"image\":{\"@type\":\"ImageObject\",\"@id\":\"https:\\\/\\\/bitpost.com\\\/news\\\/2004\\\/the-basics-2\\\/#articleImage\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/884c1dbbf1027f261dbf20652687af7ad0030bfa71ff0ef56540938bdc70be2f?s=96&d=monsterid&r=pg\",\"width\":96,\"height\":96,\"caption\":\"m\"},\"datePublished\":\"2004-02-26T22:52:00-05:00\",\"dateModified\":\"2006-04-26T16:07:28-04:00\",\"inLanguage\":\"en-US\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/bitpost.com\\\/news\\\/2004\\\/the-basics-2\\\/#webpage\"},\"isPartOf\":{\"@id\":\"https:\\\/\\\/bitpost.com\\\/news\\\/2004\\\/the-basics-2\\\/#webpage\"},\"articleSection\":\"Tricks Tips Tools\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/bitpost.com\\\/news\\\/2004\\\/the-basics-2\\\/#breadcrumblist\",\"itemListElement\":[{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/bitpost.com\\\/news#listItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/bitpost.com\\\/news\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/bitpost.com\\\/news\\\/category\\\/tricks-tips-tools\\\/#listItem\",\"name\":\"Tricks Tips Tools\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/bitpost.com\\\/news\\\/category\\\/tricks-tips-tools\\\/#listItem\",\"position\":2,\"name\":\"Tricks Tips Tools\",\"item\":\"https:\\\/\\\/bitpost.com\\\/news\\\/category\\\/tricks-tips-tools\\\/\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/bitpost.com\\\/news\\\/2004\\\/the-basics-2\\\/#listItem\",\"name\":\"CVS Group Management\"},\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/bitpost.com\\\/news#listItem\",\"name\":\"Home\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/bitpost.com\\\/news\\\/2004\\\/the-basics-2\\\/#listItem\",\"position\":3,\"name\":\"CVS Group Management\",\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/bitpost.com\\\/news\\\/category\\\/tricks-tips-tools\\\/#listItem\",\"name\":\"Tricks Tips Tools\"}}]},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/bitpost.com\\\/news\\\/#person\",\"name\":\"m\",\"image\":{\"@type\":\"ImageObject\",\"@id\":\"https:\\\/\\\/bitpost.com\\\/news\\\/2004\\\/the-basics-2\\\/#personImage\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/884c1dbbf1027f261dbf20652687af7ad0030bfa71ff0ef56540938bdc70be2f?s=96&d=monsterid&r=pg\",\"width\":96,\"height\":96,\"caption\":\"m\"}},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/bitpost.com\\\/news\\\/author\\\/m\\\/#author\",\"url\":\"https:\\\/\\\/bitpost.com\\\/news\\\/author\\\/m\\\/\",\"name\":\"m\",\"image\":{\"@type\":\"ImageObject\",\"@id\":\"https:\\\/\\\/bitpost.com\\\/news\\\/2004\\\/the-basics-2\\\/#authorImage\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/884c1dbbf1027f261dbf20652687af7ad0030bfa71ff0ef56540938bdc70be2f?s=96&d=monsterid&r=pg\",\"width\":96,\"height\":96,\"caption\":\"m\"}},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/bitpost.com\\\/news\\\/2004\\\/the-basics-2\\\/#webpage\",\"url\":\"https:\\\/\\\/bitpost.com\\\/news\\\/2004\\\/the-basics-2\\\/\",\"name\":\"CVS Group Management | bitpost.com\\\/news\",\"description\":\"In this example... &nbsp&nbsp&nbspthe cvs_coders group is used to hold ALL cvs users &nbsp&nbsp&nbspwx_coders is a subgroup - a few members are allowed access to the projects under this group &nbsp&nbsp&nbspm is the user that controls the rest of the cvs repository --------------------- CVS GROUP PERMISSIONS --------------------- &nbsp&nbsp&nbspgroupadd cvs_coders &nbsp&nbsp&nbspgroupadd wx_coders &nbsp&nbsp&nbsppico \\\/etc\\\/group &nbsp&nbsp&nbsp&nbsp&nbsp&nbspcvs_coders:x:513:m,corey &nbsp&nbsp&nbsp&nbsp&nbsp&nbspwx_coders:x:514:m,corey &nbsp&nbsp&nbspcd \\\/home\\\/m\\\/development &nbsp&nbsp&nbspchown -R m:m CVSROOT &nbsp&nbsp&nbspchgrp cvs_coders CVSROOT &nbsp&nbsp&nbspcd CVSROOT &nbsp&nbsp&nbspchgrp -R cvs_coders CVSROOT &nbsp&nbsp&nbspchgrp -R wx_coders wxHelloWorld &nbsp&nbsp&nbspchgrp -R wx_coders plucker --> New cvs users need... &nbsp&nbsp&nbsp&nbsp&nbsp&nbspa) a valid linux user (for ssh'ing into repository) &nbsp&nbsp&nbsp&nbsp&nbsp&nbspb) this user must be added to the cvs_coders group &nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp-> edit \\\/etc\\\/group and add the user at the end of the cvs_coders line... &nbsp&nbsp&nbsp&nbsp&nbsp&nbspc) also add the user to the appropriate existing subgroups &nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbspm&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp - for my personal stuff that isn't shared &nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbspwx_coders&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp- for Corey and my wxWindows project(s) --> To add a new subgroup... &nbsp&nbsp&nbsp&nbsp&nbsp&nbspa) \\\"groupadd blah_coders\\\" &nbsp&nbsp&nbsp&nbsp&nbsp&nbspb) add all users to it in \\\/etc\\\/group &nbsp&nbsp&nbsp&nbsp&nbsp&nbspc) create module(s) as \\\"m\\\", then change group to target subgroup &nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbspcd CVSROOT &nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbspchgrp -R [newsubgroup] [newmodule] ---------------------\",\"inLanguage\":\"en-US\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/bitpost.com\\\/news\\\/#website\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/bitpost.com\\\/news\\\/2004\\\/the-basics-2\\\/#breadcrumblist\"},\"author\":{\"@id\":\"https:\\\/\\\/bitpost.com\\\/news\\\/author\\\/m\\\/#author\"},\"creator\":{\"@id\":\"https:\\\/\\\/bitpost.com\\\/news\\\/author\\\/m\\\/#author\"},\"datePublished\":\"2004-02-26T22:52:00-05:00\",\"dateModified\":\"2006-04-26T16:07:28-04:00\"},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/bitpost.com\\\/news\\\/#website\",\"url\":\"https:\\\/\\\/bitpost.com\\\/news\\\/\",\"name\":\"bitpost.com\\\/news\",\"description\":\"Note to self\",\"inLanguage\":\"en-US\",\"publisher\":{\"@id\":\"https:\\\/\\\/bitpost.com\\\/news\\\/#person\"}}]}\n\t\t<\/script>\n\t\t<!-- All in One SEO -->\n\n","aioseo_head_json":{"title":"CVS Group Management | bitpost.com\/news","description":"In this example... &nbsp&nbsp&nbspthe cvs_coders group is used to hold ALL cvs users &nbsp&nbsp&nbspwx_coders is a subgroup - a few members are allowed access to the projects under this group &nbsp&nbsp&nbspm is the user that controls the rest of the cvs repository --------------------- CVS GROUP PERMISSIONS --------------------- &nbsp&nbsp&nbspgroupadd cvs_coders &nbsp&nbsp&nbspgroupadd wx_coders &nbsp&nbsp&nbsppico \/etc\/group &nbsp&nbsp&nbsp&nbsp&nbsp&nbspcvs_coders:x:513:m,corey &nbsp&nbsp&nbsp&nbsp&nbsp&nbspwx_coders:x:514:m,corey &nbsp&nbsp&nbspcd \/home\/m\/development &nbsp&nbsp&nbspchown -R m:m CVSROOT &nbsp&nbsp&nbspchgrp cvs_coders CVSROOT &nbsp&nbsp&nbspcd CVSROOT &nbsp&nbsp&nbspchgrp -R cvs_coders CVSROOT &nbsp&nbsp&nbspchgrp -R wx_coders wxHelloWorld &nbsp&nbsp&nbspchgrp -R wx_coders plucker --> New cvs users need... &nbsp&nbsp&nbsp&nbsp&nbsp&nbspa) a valid linux user (for ssh'ing into repository) &nbsp&nbsp&nbsp&nbsp&nbsp&nbspb) this user must be added to the cvs_coders group &nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp-> edit \/etc\/group and add the user at the end of the cvs_coders line... &nbsp&nbsp&nbsp&nbsp&nbsp&nbspc) also add the user to the appropriate existing subgroups &nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbspm&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp - for my personal stuff that isn't shared &nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbspwx_coders&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp- for Corey and my wxWindows project(s) --> To add a new subgroup... &nbsp&nbsp&nbsp&nbsp&nbsp&nbspa) \"groupadd blah_coders\" &nbsp&nbsp&nbsp&nbsp&nbsp&nbspb) add all users to it in \/etc\/group &nbsp&nbsp&nbsp&nbsp&nbsp&nbspc) create module(s) as \"m\", then change group to target subgroup &nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbspcd CVSROOT &nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbspchgrp -R [newsubgroup] [newmodule] ---------------------","canonical_url":"https:\/\/bitpost.com\/news\/2004\/the-basics-2\/","robots":"max-image-preview:large","keywords":"tricks tips tools","webmasterTools":{"miscellaneous":""},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/bitpost.com\/news\/2004\/the-basics-2\/#article","name":"CVS Group Management | bitpost.com\/news","headline":"CVS Group Management","author":{"@id":"https:\/\/bitpost.com\/news\/author\/m\/#author"},"publisher":{"@id":"https:\/\/bitpost.com\/news\/#person"},"image":{"@type":"ImageObject","@id":"https:\/\/bitpost.com\/news\/2004\/the-basics-2\/#articleImage","url":"https:\/\/secure.gravatar.com\/avatar\/884c1dbbf1027f261dbf20652687af7ad0030bfa71ff0ef56540938bdc70be2f?s=96&d=monsterid&r=pg","width":96,"height":96,"caption":"m"},"datePublished":"2004-02-26T22:52:00-05:00","dateModified":"2006-04-26T16:07:28-04:00","inLanguage":"en-US","mainEntityOfPage":{"@id":"https:\/\/bitpost.com\/news\/2004\/the-basics-2\/#webpage"},"isPartOf":{"@id":"https:\/\/bitpost.com\/news\/2004\/the-basics-2\/#webpage"},"articleSection":"Tricks Tips Tools"},{"@type":"BreadcrumbList","@id":"https:\/\/bitpost.com\/news\/2004\/the-basics-2\/#breadcrumblist","itemListElement":[{"@type":"ListItem","@id":"https:\/\/bitpost.com\/news#listItem","position":1,"name":"Home","item":"https:\/\/bitpost.com\/news","nextItem":{"@type":"ListItem","@id":"https:\/\/bitpost.com\/news\/category\/tricks-tips-tools\/#listItem","name":"Tricks Tips Tools"}},{"@type":"ListItem","@id":"https:\/\/bitpost.com\/news\/category\/tricks-tips-tools\/#listItem","position":2,"name":"Tricks Tips Tools","item":"https:\/\/bitpost.com\/news\/category\/tricks-tips-tools\/","nextItem":{"@type":"ListItem","@id":"https:\/\/bitpost.com\/news\/2004\/the-basics-2\/#listItem","name":"CVS Group Management"},"previousItem":{"@type":"ListItem","@id":"https:\/\/bitpost.com\/news#listItem","name":"Home"}},{"@type":"ListItem","@id":"https:\/\/bitpost.com\/news\/2004\/the-basics-2\/#listItem","position":3,"name":"CVS Group Management","previousItem":{"@type":"ListItem","@id":"https:\/\/bitpost.com\/news\/category\/tricks-tips-tools\/#listItem","name":"Tricks Tips Tools"}}]},{"@type":"Person","@id":"https:\/\/bitpost.com\/news\/#person","name":"m","image":{"@type":"ImageObject","@id":"https:\/\/bitpost.com\/news\/2004\/the-basics-2\/#personImage","url":"https:\/\/secure.gravatar.com\/avatar\/884c1dbbf1027f261dbf20652687af7ad0030bfa71ff0ef56540938bdc70be2f?s=96&d=monsterid&r=pg","width":96,"height":96,"caption":"m"}},{"@type":"Person","@id":"https:\/\/bitpost.com\/news\/author\/m\/#author","url":"https:\/\/bitpost.com\/news\/author\/m\/","name":"m","image":{"@type":"ImageObject","@id":"https:\/\/bitpost.com\/news\/2004\/the-basics-2\/#authorImage","url":"https:\/\/secure.gravatar.com\/avatar\/884c1dbbf1027f261dbf20652687af7ad0030bfa71ff0ef56540938bdc70be2f?s=96&d=monsterid&r=pg","width":96,"height":96,"caption":"m"}},{"@type":"WebPage","@id":"https:\/\/bitpost.com\/news\/2004\/the-basics-2\/#webpage","url":"https:\/\/bitpost.com\/news\/2004\/the-basics-2\/","name":"CVS Group Management | bitpost.com\/news","description":"In this example... &nbsp&nbsp&nbspthe cvs_coders group is used to hold ALL cvs users &nbsp&nbsp&nbspwx_coders is a subgroup - a few members are allowed access to the projects under this group &nbsp&nbsp&nbspm is the user that controls the rest of the cvs repository --------------------- CVS GROUP PERMISSIONS --------------------- &nbsp&nbsp&nbspgroupadd cvs_coders &nbsp&nbsp&nbspgroupadd wx_coders &nbsp&nbsp&nbsppico \/etc\/group &nbsp&nbsp&nbsp&nbsp&nbsp&nbspcvs_coders:x:513:m,corey &nbsp&nbsp&nbsp&nbsp&nbsp&nbspwx_coders:x:514:m,corey &nbsp&nbsp&nbspcd \/home\/m\/development &nbsp&nbsp&nbspchown -R m:m CVSROOT &nbsp&nbsp&nbspchgrp cvs_coders CVSROOT &nbsp&nbsp&nbspcd CVSROOT &nbsp&nbsp&nbspchgrp -R cvs_coders CVSROOT &nbsp&nbsp&nbspchgrp -R wx_coders wxHelloWorld &nbsp&nbsp&nbspchgrp -R wx_coders plucker --> New cvs users need... &nbsp&nbsp&nbsp&nbsp&nbsp&nbspa) a valid linux user (for ssh'ing into repository) &nbsp&nbsp&nbsp&nbsp&nbsp&nbspb) this user must be added to the cvs_coders group &nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp-> edit \/etc\/group and add the user at the end of the cvs_coders line... &nbsp&nbsp&nbsp&nbsp&nbsp&nbspc) also add the user to the appropriate existing subgroups &nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbspm&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp - for my personal stuff that isn't shared &nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbspwx_coders&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp- for Corey and my wxWindows project(s) --> To add a new subgroup... &nbsp&nbsp&nbsp&nbsp&nbsp&nbspa) \"groupadd blah_coders\" &nbsp&nbsp&nbsp&nbsp&nbsp&nbspb) add all users to it in \/etc\/group &nbsp&nbsp&nbsp&nbsp&nbsp&nbspc) create module(s) as \"m\", then change group to target subgroup &nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbspcd CVSROOT &nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbspchgrp -R [newsubgroup] [newmodule] ---------------------","inLanguage":"en-US","isPartOf":{"@id":"https:\/\/bitpost.com\/news\/#website"},"breadcrumb":{"@id":"https:\/\/bitpost.com\/news\/2004\/the-basics-2\/#breadcrumblist"},"author":{"@id":"https:\/\/bitpost.com\/news\/author\/m\/#author"},"creator":{"@id":"https:\/\/bitpost.com\/news\/author\/m\/#author"},"datePublished":"2004-02-26T22:52:00-05:00","dateModified":"2006-04-26T16:07:28-04:00"},{"@type":"WebSite","@id":"https:\/\/bitpost.com\/news\/#website","url":"https:\/\/bitpost.com\/news\/","name":"bitpost.com\/news","description":"Note to self","inLanguage":"en-US","publisher":{"@id":"https:\/\/bitpost.com\/news\/#person"}}]},"og:locale":"en_US","og:site_name":"bitpost.com\/news | Note to self","og:type":"article","og:title":"CVS Group Management | bitpost.com\/news","og:description":"In this example... &amp;nbsp&amp;nbsp&amp;nbspthe cvs_coders group is used to hold ALL cvs users &amp;nbsp&amp;nbsp&amp;nbspwx_coders is a subgroup - a few members are allowed access to the projects under this group &amp;nbsp&amp;nbsp&amp;nbspm is the user that controls the rest of the cvs repository --------------------- CVS GROUP PERMISSIONS --------------------- &amp;nbsp&amp;nbsp&amp;nbspgroupadd cvs_coders &amp;nbsp&amp;nbsp&amp;nbspgroupadd wx_coders &amp;nbsp&amp;nbsp&amp;nbsppico \/etc\/group &amp;nbsp&amp;nbsp&amp;nbsp&amp;nbsp&amp;nbsp&amp;nbspcvs_coders:x:513:m,corey &amp;nbsp&amp;nbsp&amp;nbsp&amp;nbsp&amp;nbsp&amp;nbspwx_coders:x:514:m,corey &amp;nbsp&amp;nbsp&amp;nbspcd \/home\/m\/development &amp;nbsp&amp;nbsp&amp;nbspchown -R m:m CVSROOT &amp;nbsp&amp;nbsp&amp;nbspchgrp cvs_coders CVSROOT &amp;nbsp&amp;nbsp&amp;nbspcd CVSROOT &amp;nbsp&amp;nbsp&amp;nbspchgrp -R cvs_coders CVSROOT &amp;nbsp&amp;nbsp&amp;nbspchgrp -R wx_coders wxHelloWorld &amp;nbsp&amp;nbsp&amp;nbspchgrp -R wx_coders plucker --&gt; New cvs users need... &amp;nbsp&amp;nbsp&amp;nbsp&amp;nbsp&amp;nbsp&amp;nbspa) a valid linux user (for ssh'ing into repository) &amp;nbsp&amp;nbsp&amp;nbsp&amp;nbsp&amp;nbsp&amp;nbspb) this user must be added to the cvs_coders group &amp;nbsp&amp;nbsp&amp;nbsp&amp;nbsp&amp;nbsp&amp;nbsp&amp;nbsp&amp;nbsp&amp;nbsp-&gt; edit \/etc\/group and add the user at the end of the cvs_coders line... &amp;nbsp&amp;nbsp&amp;nbsp&amp;nbsp&amp;nbsp&amp;nbspc) also add the user to the appropriate existing subgroups &amp;nbsp&amp;nbsp&amp;nbsp&amp;nbsp&amp;nbsp&amp;nbsp&amp;nbsp&amp;nbsp&amp;nbsp&amp;nbsp&amp;nbsp&amp;nbspm&amp;nbsp&amp;nbsp&amp;nbsp&amp;nbsp&amp;nbsp&amp;nbsp&amp;nbsp&amp;nbsp&amp;nbsp&amp;nbsp&amp;nbsp&amp;nbsp - for my personal stuff that isn't shared &amp;nbsp&amp;nbsp&amp;nbsp&amp;nbsp&amp;nbsp&amp;nbsp&amp;nbsp&amp;nbsp&amp;nbsp&amp;nbsp&amp;nbsp&amp;nbspwx_coders&amp;nbsp&amp;nbsp&amp;nbsp&amp;nbsp&amp;nbsp&amp;nbsp- for Corey and my wxWindows project(s) --&gt; To add a new subgroup... &amp;nbsp&amp;nbsp&amp;nbsp&amp;nbsp&amp;nbsp&amp;nbspa) &quot;groupadd blah_coders&quot; &amp;nbsp&amp;nbsp&amp;nbsp&amp;nbsp&amp;nbsp&amp;nbspb) add all users to it in \/etc\/group &amp;nbsp&amp;nbsp&amp;nbsp&amp;nbsp&amp;nbsp&amp;nbspc) create module(s) as &quot;m&quot;, then change group to target subgroup &amp;nbsp&amp;nbsp&amp;nbsp&amp;nbsp&amp;nbsp&amp;nbsp&amp;nbsp&amp;nbsp&amp;nbsp&amp;nbsp&amp;nbsp&amp;nbspcd CVSROOT &amp;nbsp&amp;nbsp&amp;nbsp&amp;nbsp&amp;nbsp&amp;nbsp&amp;nbsp&amp;nbsp&amp;nbsp&amp;nbsp&amp;nbsp&amp;nbspchgrp -R [newsubgroup] [newmodule] ---------------------","og:url":"https:\/\/bitpost.com\/news\/2004\/the-basics-2\/","article:published_time":"2004-02-26T22:52:00+00:00","article:modified_time":"2006-04-26T21:07:28+00:00","twitter:card":"summary","twitter:title":"CVS Group Management | bitpost.com\/news","twitter:description":"In this example... &amp;nbsp&amp;nbsp&amp;nbspthe cvs_coders group is used to hold ALL cvs users &amp;nbsp&amp;nbsp&amp;nbspwx_coders is a subgroup - a few members are allowed access to the projects under this group &amp;nbsp&amp;nbsp&amp;nbspm is the user that controls the rest of the cvs repository --------------------- CVS GROUP PERMISSIONS --------------------- &amp;nbsp&amp;nbsp&amp;nbspgroupadd cvs_coders &amp;nbsp&amp;nbsp&amp;nbspgroupadd wx_coders &amp;nbsp&amp;nbsp&amp;nbsppico \/etc\/group &amp;nbsp&amp;nbsp&amp;nbsp&amp;nbsp&amp;nbsp&amp;nbspcvs_coders:x:513:m,corey &amp;nbsp&amp;nbsp&amp;nbsp&amp;nbsp&amp;nbsp&amp;nbspwx_coders:x:514:m,corey &amp;nbsp&amp;nbsp&amp;nbspcd \/home\/m\/development &amp;nbsp&amp;nbsp&amp;nbspchown -R m:m CVSROOT &amp;nbsp&amp;nbsp&amp;nbspchgrp cvs_coders CVSROOT &amp;nbsp&amp;nbsp&amp;nbspcd CVSROOT &amp;nbsp&amp;nbsp&amp;nbspchgrp -R cvs_coders CVSROOT &amp;nbsp&amp;nbsp&amp;nbspchgrp -R wx_coders wxHelloWorld &amp;nbsp&amp;nbsp&amp;nbspchgrp -R wx_coders plucker --&gt; New cvs users need... &amp;nbsp&amp;nbsp&amp;nbsp&amp;nbsp&amp;nbsp&amp;nbspa) a valid linux user (for ssh'ing into repository) &amp;nbsp&amp;nbsp&amp;nbsp&amp;nbsp&amp;nbsp&amp;nbspb) this user must be added to the cvs_coders group &amp;nbsp&amp;nbsp&amp;nbsp&amp;nbsp&amp;nbsp&amp;nbsp&amp;nbsp&amp;nbsp&amp;nbsp-&gt; edit \/etc\/group and add the user at the end of the cvs_coders line... &amp;nbsp&amp;nbsp&amp;nbsp&amp;nbsp&amp;nbsp&amp;nbspc) also add the user to the appropriate existing subgroups &amp;nbsp&amp;nbsp&amp;nbsp&amp;nbsp&amp;nbsp&amp;nbsp&amp;nbsp&amp;nbsp&amp;nbsp&amp;nbsp&amp;nbsp&amp;nbspm&amp;nbsp&amp;nbsp&amp;nbsp&amp;nbsp&amp;nbsp&amp;nbsp&amp;nbsp&amp;nbsp&amp;nbsp&amp;nbsp&amp;nbsp&amp;nbsp - for my personal stuff that isn't shared &amp;nbsp&amp;nbsp&amp;nbsp&amp;nbsp&amp;nbsp&amp;nbsp&amp;nbsp&amp;nbsp&amp;nbsp&amp;nbsp&amp;nbsp&amp;nbspwx_coders&amp;nbsp&amp;nbsp&amp;nbsp&amp;nbsp&amp;nbsp&amp;nbsp- for Corey and my wxWindows project(s) --&gt; To add a new subgroup... &amp;nbsp&amp;nbsp&amp;nbsp&amp;nbsp&amp;nbsp&amp;nbspa) &quot;groupadd blah_coders&quot; &amp;nbsp&amp;nbsp&amp;nbsp&amp;nbsp&amp;nbsp&amp;nbspb) add all users to it in \/etc\/group &amp;nbsp&amp;nbsp&amp;nbsp&amp;nbsp&amp;nbsp&amp;nbspc) create module(s) as &quot;m&quot;, then change group to target subgroup &amp;nbsp&amp;nbsp&amp;nbsp&amp;nbsp&amp;nbsp&amp;nbsp&amp;nbsp&amp;nbsp&amp;nbsp&amp;nbsp&amp;nbsp&amp;nbspcd CVSROOT &amp;nbsp&amp;nbsp&amp;nbsp&amp;nbsp&amp;nbsp&amp;nbsp&amp;nbsp&amp;nbsp&amp;nbsp&amp;nbsp&amp;nbsp&amp;nbspchgrp -R [newsubgroup] [newmodule] ---------------------"},"aioseo_meta_data":{"post_id":"66","title":null,"description":null,"keywords":null,"keyphrases":null,"primary_term":null,"canonical_url":null,"og_title":null,"og_description":null,"og_object_type":"default","og_image_type":"default","og_image_url":null,"og_image_width":null,"og_image_height":null,"og_image_custom_url":null,"og_image_custom_fields":null,"og_video":null,"og_custom_url":null,"og_article_section":null,"og_article_tags":null,"twitter_use_og":false,"twitter_card":"default","twitter_image_type":"default","twitter_image_url":null,"twitter_image_custom_url":null,"twitter_image_custom_fields":null,"twitter_title":null,"twitter_description":null,"schema":{"blockGraphs":[],"customGraphs":[],"default":{"data":{"Article":[],"Course":[],"Dataset":[],"FAQPage":[],"Movie":[],"Person":[],"Product":[],"ProductReview":[],"Car":[],"Recipe":[],"Service":[],"SoftwareApplication":[],"WebPage":[]},"graphName":"","isEnabled":true},"graphs":[]},"schema_type":null,"schema_type_options":null,"pillar_content":false,"robots_default":true,"robots_noindex":false,"robots_noarchive":false,"robots_nosnippet":false,"robots_nofollow":false,"robots_noimageindex":false,"robots_noodp":false,"robots_notranslate":false,"robots_max_snippet":null,"robots_max_videopreview":null,"robots_max_imagepreview":"large","priority":null,"frequency":null,"local_seo":null,"breadcrumb_settings":null,"limit_modified_date":false,"ai":null,"created":"2021-03-13 19:50:40","updated":"2025-08-17 18:43:57","seo_analyzer_scan_date":null},"jetpack_publicize_connections":[],"jetpack_featured_media_url":"","jetpack_sharing_enabled":true,"jetpack_shortlink":"https:\/\/wp.me\/p9M11L-14","jetpack_likes_enabled":true,"_links":{"self":[{"href":"https:\/\/bitpost.com\/news\/wp-json\/wp\/v2\/posts\/66","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/bitpost.com\/news\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/bitpost.com\/news\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/bitpost.com\/news\/wp-json\/wp\/v2\/users\/2"}],"replies":[{"embeddable":true,"href":"https:\/\/bitpost.com\/news\/wp-json\/wp\/v2\/comments?post=66"}],"version-history":[{"count":0,"href":"https:\/\/bitpost.com\/news\/wp-json\/wp\/v2\/posts\/66\/revisions"}],"wp:attachment":[{"href":"https:\/\/bitpost.com\/news\/wp-json\/wp\/v2\/media?parent=66"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/bitpost.com\/news\/wp-json\/wp\/v2\/categories?post=66"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/bitpost.com\/news\/wp-json\/wp\/v2\/tags?post=66"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}