Overview |
As you probably have heard, NachOS is a very complicated project involving thousands of lines of code. Throughout the quarter, you will be writing and modifying lots of it. Since you will be working in groups, at times it will be hard to remember who changed what in which files. Anyone who had survived BunnyWorld (or had written any other significant project in a group) remembers the pain of integrating different versions of code.
CVS stands for Concurrent Version Control, and it is a widely used version control system on UNIX platform. It is a command-line system, but it is also integrated into Emacs (and hence XEmacs) very well, so you can diff the files and directories from within Emacs.
Why Use CVS? |
We do not require that you use CVS. We will not answer any but the most trivial support questions about it, since we aren't CVS experts. However, we provide this information as a service because, in the opinion of some of the TAs, it was very useful and helpful without very much trouble to learn how to use it.
If you use it right, it could greatly reduce your integration time, along with backing up all of your changes as you go. Every group member works on their own separate version of code, and after a feature is complete it is integrated into the master repository.
Where to get Info? |
The best place to look is in the CVS manual. You can get to it in UNIX by typing
mythXX:~> info cvs
CVS Setup |
Creating the Project |
Using CVS |
Integration |
Integration happens for free during the commit process. CVS diffs the newly committed file with the previous versions, looking for changes and incorporating those changes into the repository. Your partners will get the new changes with the cvs update command, which will change the local checked out copy to reflect the repository.
However, at times CVS cannot merge things for you when you're trying to update. This typically happens when your partner has committed a new version of the file since the last time you've updated, and you've also edited the file (so that CVS sees two sets of changes since the last version in the repository, and doesn't know which one supercedes the other). In such cases, it will flag the conflicting changes with <<<<<<< and >>>>>>>>. You will have to merge these sections by hand. This is the trickiest part, so make sure you have both people present when you are solving a merge conflict.
Please note that in order to prevent such conflicts from appearing in the repository, CVS will sometimes force you to update before you commit.
Conclusion |
I would highly recommend reading the CVS website (or info cvs) for basic information, looking at the following commands:
checkout, update, commit, add, remove, diff.
It is also a good idea to create a dummy project, add it to the repository, check it out, do some changes and commit them. Then a partner should make sure he can update and that the changes show up in his or her directory.
I would also recommend playing with CVS from inside XEmacs as well. You can get to it from Tools/VC menu, and you have options like Diff buffers, Diff Directories, Visit Other Version, etc.
I personally have found Visit Other Version along with Diff buffers extremely useful. There is even a nice color merging tool within XEmacs as well, very similar to Visual SourceSafe.
Try it out!