Monday, March 17, 2008

Some Handy CVS Commands

# Checkout a Module
cvs co <module>

# Checkout a Module from a given branch, MY_BRANCH_TAG
cvs co -rMY_BRANCH_TAG <module>

# Display log associated with a file
cvs log <file>

# Update the Module with any new code committed
cvs update <module>

# Add a new binary file
cvs add -kb <binary_file>
cvs commit

# Review list of files that have been modified in your diretory
cvs -qn up