简体   繁体   中英

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. Thanks :)

Try doing the "svn commit" from the command line:

svn commit -m "My message"
echo $?

The $? variable is the exit code of the last command in Bash. This exit code might give you more information if you search Google for "svn commit fails with exit code 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? )

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

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