Reputation: 13706
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.
Upvotes: 0
Views: 286
Reputation: 13706
The answer is using cvs admin -t-<new description> <filename>
Example:
cvs admin -t-"Math library" math_lib.c
Upvotes: 1