WinCVS を使用して CVS サーバーに MS word ファイルをコミットします。追加オプションとしてテキストを選択しました。バイナリ形式で追加するかどうか。今、ファイルをチェックアウトしました。それらのファイルを開こうとしたとき。これらのファイルは破損しており、開くことができないと表示されます。ローカル マシンにバックアップがないため、CVS-Server にあるこれらのファイルの形式を変更したり、それらのファイルを取得したりする方法はありますか?
1 に答える
MS Word files are binary files, so it's very possible that CVS corrupted them when adding to the repository.
I'm not familiar with WinCVS but would recommend looking for an option which allows the file type to be changed from "text" to "binary". If you can't find such option then you might try removing the files and then adding them again as binaries (I've seen this reported as working for WinCVS in this thread: http://dbaspot.com/forums/configuration-management/193699-binarys-text.html).
(Alternatively, if you're comfortable using CVS from the command line/DOS prompt then you could use CVS directly: move to the folder with the checked-out files and then do:
cvs admin -kb [file_name]
for each of the problem files.)