tags:

views:

36

answers:

1

How to change the description of a file in CVS? By description, I mean the text after the "description:" line when I issue cvs log.

Thanks.

+1  A: 

The answer is using cvs admin -t-<new description> <filename>

Example:

cvs admin -t-"Math library" math_lib.c
hcs42