Checkout:
cvs co path
Checkout with tag:
cvs co -r tag path
Checkout with revision:
cvs co -rrevision filename (i.g. cvs co -r1.4 config.xml)
Compare one local file with the version that was checked out:
cvs diff filename
Commit with a comment:
cvs commit -m "comment" filenames
Add a file to the repository:
cvs add filename
cvs commit -m "comment" filename
Remove a file from the repository:
cvs remove filename
cvs commit -m "comment" filename
Update from repository:
cvs update
Check log history:
cvs log filename
Tag files:
cvs tag tagname filenames
Branch off the local working copy:
cvs tag -b branchname
Merge the changes in a branch to the local working copy:
cvs update -j branchname
Copyright © 2013 Welcome to the website of Davis Fiore. All Rights Reserved.