Line: 1 to 1 | ||||||||
---|---|---|---|---|---|---|---|---|
How to use CVSCVS help:man cvscvs -H Finding code in the CVS database:http://cmssw.cvs.cern.ch/cgi-bin/cmssw.cgi/![]() make a new CVS tag:cvs import -m-m msg Log message. e.g.: cvs import -m "StopAnalysisHUN" UserCode /HUN-2_2_3/StopAnalysis/ akapusi start checkout:cvs co -r-r rev Check out revision or tag. (implies -P) (is sticky) -d dir Check out into dir instead of module name. e.g.(1): cvs co -rV00-01-05 -d SusyAnalysis /PatCrossCleaner UserCode /SusyAnalysis/PatCrossCleaner e.g.(2): checkout the HEAD cd CMSSW_X_X_X/src/SusyAnalysis/ cvs co -d UserCode / add a new tag to a valid CVS tag:cvs tagcvs tag StopAnalysis -123456 checkout:cvs co -r StopAnalysis -123456 -d SusyAnalysis UserCode /HUN-2_2_3/StopAnalysisupdate:cvs updateAfter this we have to check the code, because if another person modified it, it's possible that it doesn't run. difference:cvs diffupload/commit:cvs commit -m "I modified ..."or cvs tag |