Reputation: 637
I need to do empty checkin to cvs repository with special message. I mean, I don't really need to do any changes in file but I need to have commit with special message. Is it possible?
Upvotes: 1
Views: 740
Reputation: 263257
Yes, use the -f
option.
cvs commit -f -m 'commit message' file
Upvotes: 1