ITedite

特定のファイルを前のバージョンに戻すには

■特定のファイルを最新登録バージョンに戻す
$ cvs update -p hoge.c > hoge.c
■特定のファイルを特定のバージョンに戻す
例えば、バージョン1.3に戻すときは
$ cvs update -p -r 1.3 hoge.c > hoge.c
でよい。