当前位置: 技术问答>linux和unix
cvs -commit问题
来源: 互联网 发布时间:2016-02-08
本文导语: 我在使用CVS -COMMIT时候,系统出现了下面的问题: cvs [commit aborted]: 'root' is not allowed to commit files 我应该怎么做呢?谢谢 | 'root' is not allowed to commit files 当提交一个永久性的...
我在使用CVS -COMMIT时候,系统出现了下面的问题:
cvs [commit aborted]: 'root' is not allowed to commit files
我应该怎么做呢?谢谢
cvs [commit aborted]: 'root' is not allowed to commit files
我应该怎么做呢?谢谢
|
'root' is not allowed to commit files
当提交一个永久性的更改,cvs 会为提交修改的人建立一个日志条目。如果你的提交被当作 "root" (不是使用 "su" 或者其他具有 root 授权的程序) 记录,cvs 将无法判断是谁做了真正的修改。正因为此,CVS 默认不允许登录为 "root" 来提交。(你可以在 configure 里面加上 --enable-rootcommit 选项并重新编译来禁止此选项。在有些系统上面需要在编译 cvs 前修改对应的 config.h 文件)。
http://www.bsder.name/ebook/document/cvsdoc_zh/Error-messages.html
当提交一个永久性的更改,cvs 会为提交修改的人建立一个日志条目。如果你的提交被当作 "root" (不是使用 "su" 或者其他具有 root 授权的程序) 记录,cvs 将无法判断是谁做了真正的修改。正因为此,CVS 默认不允许登录为 "root" 来提交。(你可以在 configure 里面加上 --enable-rootcommit 选项并重新编译来禁止此选项。在有些系统上面需要在编译 cvs 前修改对应的 config.h 文件)。
http://www.bsder.name/ebook/document/cvsdoc_zh/Error-messages.html