Hi, guys.
FOr those interested, here there are some useful CVS commands that show how to utilize the version control system set up by group 1(first bullet for team2).I also attached the new file(initial one provided by Abe + CVS commands).
1. Checkout all the files in the current directory(in this case xmlwiki):
cvs -d:ext:use...@cv...:/cvsroot/xmlwiki checkout xmlwiki
Checkout a branch from repository:
cvs -d:ext:use...@cv...:/cvsroot/xmlwiki checkout r rel-2 xmlwiki
2. Commit a files in the repository:
cvs -d:ext:use...@cv...:/cvsroot/xmlwiki commit TestWiki.java
Merge the change changes made on a branch into your working copy:
cvs -d:ext:use...@cv...:/cvsroot/xmlwiki update -j 1.2.2.2 TestWiki.java
3. View differences between a given revision and the local copy for a given file:
cvs -d:ext:rd...@cv...:/cvsroot/xmlwiki diff -r 1.7 build.xml
4. Add a new file to the repository:
cvs -d:ext:rd...@cv...:/cvsroot/xmlwiki add src/org/xmlwiki/NewStory.java
5. Create a branch based on the current revisions in the working copy:
cvs -d:ext:rd...@cv...:/cvsroot/xmlwiki tag b rel-1
|