简体   繁体   English

SVN不能承诺svn不询问用户名密码

[英]SVN can't commit to svn not asking for username password

I just installed subversion on my ubuntu and made first repository now its accessible with http://mylanip/mywebsite or my lan ip I tried to checkout with windows machine on lan and it checked out successfully without asking username and password it can't commit changes and showing error "target machine actively refused it" please help me sorting out this problem. 我刚刚在我的ubuntu上安装了Subversion,现在可以通过http://mylanip/mywebsite或我的lan ip访问第一个存储库,而我尝试使用lan上的Windows机器进行检出,并且成功检出而没有询问无法提交的用户名和密码更改并显示错误“目标计算机主动拒绝它”,请帮助我解决此问题。 Thanks :) 谢谢 :)

Try doing the "svn commit" from the command line: 尝试从命令行执行“ svn commit”:

svn commit -m "My message"
echo $?

The $? $? variable is the exit code of the last command in Bash. variable是Bash中最后一条命令的退出代码。 This exit code might give you more information if you search Google for "svn commit fails with exit code XXXX" 如果您在Google搜索“ svn提交失败,退出代码XXXX”,则此退出代码可能会为您提供更多信息。

If using the Windows command line, the exit code is a little more difficult to obtain ( How do I get the application exit code from a Windows command line? ) 如果使用Windows命令行,则很难获得退出代码如何从Windows命令行获取应用程序退出代码?

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM