* CVS Access Here we describe how one obtains commit access to the CVS repository and the responsibilities that come with that access privilege. ** What is CVS? Briefly, CVS is a system tool used to store and maintain files and a history of their changes over time. The Mono source code and related files are kept on a CVS server at Ximian. ** What Access? We mean "commit" access. This is the privilege to make permanent changes to the Mono source code and related files. You need an account created by the CVS server administrator in order to commit changes to the files on that server. ** How Does One Obtain Access? Any active Mono developer can get a CVS account. Normally one is considered an 'active' developer after sending several patches to the mailing lists and/or bugzilla for review. If you are not a developer, but want to access the latest sources, please see the AnonCVS instructions. If you feel you are ready for a CVS account send an e-mail to miguel with your public OpenSSH key for this purpose. Please specify if the key was generated with SSH version 1 or version 2. Detailed instructions are below. * Policies It is necessary that everyone with CVS commit access respect and adhere to the following rules. If you ask for and are granted CVS access, you are agreeing to follow these policies. ** Code License If you are about to commit code to a module, the code that is being committed should be released under the same license as the code that the module has. Check the license if you are unsure, but it is basically: class libraries X11; compiler and tools: GPL; runtime: LGPL. If in doubt, check with the maintainers of the module, or send mail to mono-hackers-list@ximian.com. ** Changing code Even if you have CVS commit access, that doesn't mean you can change code at will in any directory or module. Directories and Namespaces have a sort of unofficial ownership. If you are not the owner of a piece of code and you want to make changes/fixes to it, there are two cases. 1) The change is a typo fix or a one-liner build or trivial fix. In this case almost anyone can commit (always remembering to add the proper changelog entry to explain the change). We say "almost anyone", because changes to certain directories almost always should be reviewed first. Such as changes to core stuff: corlib/System, System.Collections, mini/, metadata/, System.IO. 2) The change is larger. In this case the patch *must* be sent to mono-devel-list for review by the owner of the code and by the other hackers. Always submit such patches to the list or bugzilla, although you may put the owner of the code in the CC header. Hackers come and go. Mailing a patch to only a personal address is a good way to get the patch forgotten and missed. Plus, getting the patches reviewed as well as reviewing them, is a good thing, so try to get used to it. Note: If the patch is an addition of code and doesn't change any of the existing code, the rules are slightly relaxed: there is more freedom in committing such changes, if they don't interfere with the existing codebase. ** Owning Code Now, how do you get to be the owner of a chunk of code? The answer is simple. You wrote the code, so you're the unofficial owner. There is also another way. After sending a few patches for the code, the owner (or the core developers of mono, if the owner somehow disappeared) trusts you and tells you you're free to commit without getting his review first. Here is a (partial) list of namespaces/directories with their owners: If you are the owner of a piece of code, feel free to commit code, and delegate the work to others. But, if you're not the owner of the code, committing a rewrite without getting a review first is not good cvsitizenship (especially when the rewrite claimed to fix bugs, but not a single regression test has been added to the suite). ** Commit Rules Once you know you can commit a patch (because of the rules above) there are a few other small rules to follow: Also, remember to pat yourself on the back after the commit, smile and think we're a step closer to a better free software world. * Using CVS. This is a small tutorial for using CVS. ** Generating an SSH key If you are using SSH version 2, please generate your key using:
	ssh-keygen -t rsa
And mail miguel the id_rsa.pub file. If you are using SSH version 1, run:
	ssh-keygen
And mail miguel your identity.pub file. If you are using SSH from SSH Communications Security (they offer a free SSH client for personal use), you have to use OpenSSH to convert your public key to the required format. You have to use OpenSSH's ssh-keygen program and write the following:
	ssh-keygen -i -f id_XXX.pub > my_public_key.pub
where the file id_XXX.pub is your public key file, normally located under ~/.ssh/ or ~/.ssh2/. Send to miguel the my_public_key.pub file. The *exact* format for this file must be:
	ssh-rsa XXXXX....
You will need CVS and SSH. Windows users can get both by installing Cygwin (http://www.cygwin.com) Unix users will probably have those tools installed already. ** Checking out the sources To check out the sources for the first time from the repository, use this command:
	export CVS_RSH=ssh
	export CVSROOT=username@mono-cvs.ximian.com:/cvs/public
	cvs -z3 co mcs mono
** Updating your sources Every day people will be making changes, to get your latest updated sources, use:
	cvs -z3 update -Pd mcs mono
Note: The '-z3' enables compression for the whole cvs action. The '-Pd' makes the update operation (P)rune directories that have been deleted and get new (d)irectories added to the repository. ** Making patches Usually you will want to make a patch to contribute, and let other people review it before committing it. To obtain such a "patch", you type:
	cd directory-you-want-to-diff
	cvs -z3 diff -u > file.diff
	mail mono-list@ximian.com < file.diff
** Committing your work Once you get approval to commit to the CVS, or if you are committing code that you are the maintainer of, you will want to commit your code to CVS. To do this, you have to "add" any new files that you created:
	cvs add new-file.cs
And then commit your changes to the repository:
	cvs commit file-1.cs file-2.cs
* Keeping track of changes. We provide two e-mail based mechanisms to keep track of changes to the code base: We hope to offer LXR and Bonsai in the future as well. To subscribe, send an email message to mono-cvs-list-request@ximian.com and in the body of the message put `subscribe'. This will send you an email message every time a change is made to the CVS repository, together with the information that the author of the changes submitted. You might also want to track the live changes, subscribe to the mono-patches@ximian.com to receive the patches as they are checked into CVS.