| Command | Description |
|---|---|
cvs commit filename |
|
cvs add filename |
|
cvs add -kb filename |
add binary |
?? cvs add -ktfilename |
add text? (default?) |
cvs checkout project_name |
|
cvs diff filename |
|
cvs log filename |
|
cvs tag filename |
|
cvs -q update -PAd |
Get new stuff, reset sticky flags |
|
|
|
cvs annotate file_name
cvs annotate file_name
Note: You must do an update after this to see the change in WinCVS.
cvs admin -kb file_name
cvs admin is recursive, so cvs admin -kb *
will recursively change all the files in a directory tree.
/* Here is what people have been up to:
*
* $Log: frob.c,v $
* Revision 1.1 1997/01/03 14:23:51 joe
* Add the superfrobnicate option
*
*/
then additional lines which are added when expanding the $Log keyword will be preceded by ` * '.
Unlike previous versions of CVS and RCS, the comment leader from the RCS file is not used.
The $Log keyword is useful for accumulating a complete change log in a source file, but for
several reasons it can be problematic. See section Problems with the $Log$ keyword..