|
|
我用 CVS checkout 一个项目的文件后,连同 CVS 目录打成包在另一个地方执行 cvs update 却不行。在原来的目录里执行时 CVS 的 trace 结果是:
- cvs server: Updating emacs/mac/Emacs.app/Contents/MacOS
- S-> rename(CVS/Entries.Backup,CVS/Entries)
- S-> unlink_file(CVS/Entries.Log)
- S-> unlink_file(Resources/CVS/Entries.Static)
- -> unlink_file(CVS/Entries.Static)
- cvs server: Updating emacs/mac/Emacs.app/Contents/Resources
- S-> rename(CVS/Entries.Backup,CVS/Entries)
- S-> unlink_file(CVS/Entries.Log)
- S-> unlink_file(English.lproj/CVS/Entries.Static)
- -> unlink_file(CVS/Entries.Static)
- cvs server: Updating emacs/mac/Emacs.app/Contents/Resources/English.lproj
- S-> rename(CVS/Entries.Backup,CVS/Entries)
- S-> unlink_file(CVS/Entries.Log)
- S-> unlink_file(bin/CVS/Entries.Static)
- -> unlink_file(CVS/Entries.Static)
- cvs server: Updating emacs/mac/bin
- S-> rename(CVS/Entries.Backup,CVS/Entries)
- S-> unlink_file(CVS/Entries.Log)
- S-> unlink_file(inc/CVS/Entries.Static)
- -> unlink_file(CVS/Entries.Static)
复制代码
在另一个目录里却是:
- -> Sending file `splash.pbm' to server
- -> Sending file `termcap.src' to server
- -> Sending file `ulimit.hack' to server
- -> Sending file `viperCard.tex' to server
- -> Sending file `yow.lines' to server
- -> Sending file `BIG5.map' to server
- -> Sending file `CNS-1.map' to server
- -> Sending file `CNS-2.map' to server
- -> Sending file `CNS-3.map' to server
- -> Sending file `CNS-4.map' to server
- -> Sending file `CNS-5.map' to server
- -> Sending file `CNS-6.map' to server
- -> Sending file `CNS-7.map' to server
- -> Sending file `CNS-F.map' to server
- -> Sending file `CP10007.map' to server
- -> Sending file `CP1125.map' to server
- -> Sending file `CP1250.map' to server
- -> Sending file `CP1251.map' to server
- -> Sending file `CP1252.map' to server
- -> Sending file `CP1253.map' to server
- -> Sending file `CP1254.map' to server
- -> Sending file `CP1255.map' to server
- -> Sending file `CP1256.map' to server
- -> Sending file `CP1257.map' to server
- -> Sending file `CP1258.map' to server
复制代码
就是说,换本地目录后会将所有已经下载的文件发送到服务器。我用的是匿名登录,为什么会这样呢?是不是在一台机器上同一个项目的文件只能保存一份(但位置不限)?有什么办法可以解决吗?谢谢。 |
|