% cvs add newfile.c % cvs commit newfile.ccommit するときに、「ファイル newfile.c を追加」 などとコメントするとよいでしょう。
サブディレクトリも cvs add で追加できます。
% cvs add -kb binary_file
% cvs admin -kb binary_file [バイナリファイル] % cvs admin -ko text_file [キーワード置換をしないテキスト] % cvs admin -kkv text_file [デフォルトに戻す]
% cvs remove -f a.c cvs remove: scheduling `a.c' for removal cvs remove: use 'cvs commit' to remove this file permanently % cvs commitファイルを削除したいファイルを指定し、-f オプションをつけて cvs remove -f を実行します。 cvs commit を実行することで、レポジトリの登録からも削除されます。
commit するときに「ファイルなんとかを削除」と コメントするとよいでしょう。
% cd test % rm ?.c % cvs remove cvs remove: Removing . cvs remove: scheduling a.c for removal cvs remove: scheduling b.c for removal cvs remove: use 'cvs commit' to remove these files permanently % cvs commit cvs commit: Examining . cvs commit: Committing .実際にファイルを削除し、cvs remove を実行し、cvs commit を 実行することで、サーバーに登録されたファイルも削除されます。
% mv OLD NEW % cvs remove OLD % cvs add NEW % cvs commit OLD NEWcommit するときに「ファイルなんとかをかんとかに名称変更」と コメントするとよいでしょう。
古い履歴情報やバージョン番号は消えてしまうので、 あとで変更することのないように、最初にファイル名をうまくつけるべきでしょう。