无法提交到 svn - 访问被拒绝

发布于 2024-12-17 00:03:19 字数 390 浏览 0 评论 0原文

我正在使用 SVN 开发一个小项目。

我检查了该项目:

svn co http://mylocalserver/projectx/ .

我进行了更改(更新和添加了文件):

svn add file1.php, file2.php

但是,每次我想使用此命令提交更改时:

svn commit -m "added file1.php and file2.php and updated the bug #4123" file1.php file2.php gah.php

我得到:访问被拒绝

可能是什么问题?

I am working on a small project with SVN.

I checked out the project:

svn co http://mylocalserver/projectx/ .

I made my changes (updated and added files):

svn add file1.php, file2.php

But then, every time I want to commit my changes using this command:

svn commit -m "added file1.php and file2.php and updated the bug #4123" file1.php file2.php gah.php

I get: Access is denied

What can be the problem?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

彡翼 2024-12-24 00:03:21

如果您不使用 LDAP 服务器,则必须检查以下内容:

在您的 /path/to/the/project/conf/svnserve.conf 中检查您是否有某些内容例如:

anon-access = none
auth-access = none

您必须更改为使用:

anon-access = none
auth-access = write
password-db = /path/to/passwd

然后在您的 /path/to/the/project/conf/passwd

您可以创建您的用户:

user1 = password

如果您使用的是 LDAP 服务器,请阅读这些文章:

也许您的密码已过期或者您没有完全的权利去承诺。

也许这些文章会有所帮助:

http://directory.fedoraproject.org/wiki/Howto:Subversion_Apache_LDAP

http://www.mylinuxtips.info/?p=7

If you don't use an LDAP server you have to check this:

In your /path/to/the/project/conf/svnserve.conf check if you have something like:

anon-access = none
auth-access = none

You will have to change to use:

anon-access = none
auth-access = write
password-db = /path/to/passwd

then in your /path/to/the/project/conf/passwd

you can create your users:

user1 = password

If you are using an LDAP server please read these articles:

Maybe your password is expire or you don't have the full rights to commit.

Maybe these articles will help:

http://directory.fedoraproject.org/wiki/Howto:Subversion_Apache_LDAP

http://www.mylinuxtips.info/?p=7

被翻牌 2024-12-24 00:03:21

您应该检查

  • 您是否有权写入存储库(询问存储库管理员)
  • 您使用配置的用户名进行提交。默认情况下,Subversion 使用您在发出命令时使用的用户名,但您可以使用 --username 选项指定不同的用户名

    svn --username mysvnusername --message“添加了 file1.php 和 file2.php 并更新了 bug #4123” file1.php file2.php gah.php
    

如果您是存储库管理员,请检查 Subversion 服务器的日志文件以查看出了什么问题

You should check that

  • you have permission to write to the repository (ask the repository admin)
  • you committing using the username which was configured. By default Subversion uses the username you are using when issuing the command, but you can specify a different one with the --username option

    svn --username mysvnusername --message "added file1.php and file2.php and updated the bug #4123" file1.php file2.php gah.php
    

If you are the repository administrator check the log file of the Subversion Server to see what went wrong

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文