Gayane
Gayane

Reputation: 637

Is it possible to force cvs commit to unchanged file?

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

Answers (1)

Keith Thompson
Keith Thompson

Reputation: 263257

Yes, use the -f option.

cvs commit -f -m 'commit message' file

Upvotes: 1

Related Questions