CVS
CVS is not a substitute for management.
Your managers and project leaders are expected to talk to you frequently enough to make certain you are aware of schedules, merge points, branch names and release dates. If they don’t, CVS can’t help.
CVS is an instrument for making sources dance to your tune. But you are the piper and the composer. No instrument plays itself or writes its own music.
リポジトリの配置フォルダの設定
code:リポジトリの配置箇所を作成
export CVSROOT=/home/mita/scm/cvs/rep
# 指定フォルダ内に管理用のフォルダが作成される
cvs init
リポジトリにインポート
code:リポジトリ作成の
# リポジトリを構成するファイルが存在するディレクトリに移動する
cd /path/path/
# testprj: プロジェクト名
# ven: ベンダー名
# start : リリースタグ
cvs import testprj ven start
リポジトリの操作
code:リポジトリの操作
# ファイルの改名(ログは消える)
mv test4.txt test4r.txt
cvs remove test4.txt
cvs add test4r.txt
cvs commit -m "move" test4.txt test4r.txt