-1

A file is changed and needs to be committed to cvs that file only, is this the correct way:-

    cvs commit -m "createTables.sql"
Soham Banerjee
  • 465
  • 1
  • 8
  • 18

1 Answers1

0

No.

cvs commit filename

Is what you need.

cvs commit -m "some text" 

uses "some text" as the commit message.

Perhaps you want something like:

cvs commit -m "Commit file foo.bar" foo.bar

For future reference, the manual can be found here: http://cvsbook.red-bean.com/cvsbook.html#Committing

mjs
  • 2,837
  • 4
  • 28
  • 48