What does the subversion error “Failed to read the status bar” mean?

This is a pretty simple question, but it turns me on. I created a new repository on beanstalk.com. They give me the url, http://my_name.svn.beanstalkapp.com/blog . They also automatically create a folder of tags, connecting lines, and branches in the repository. I checked the trunk folder and used

svn add
to add a new file. I try to execute my first commit, but I get this error:

Commit failed (details follow):
CHECKOUT of '/ foo /! Svn / bln / 1': Could not read status line: 
connection was closed by server. (http: // user_name @ my _name.svn.beanstalkapp.com)

What does it mean and what does it make? I have googled to determine what “Failed to read the status bar”, but could not find anything to explain.

edit: I was getting this error while trying to manipulate my repository due to a firewall. I still don’t know what caused this, but I don’t have this problem at home. Weirdness.

+3
source share
4 answers

I also had the same problem when I typed the wrong url:

Bad behavior:

$ svn list https://zh3.beanstalkapp.com/repo

To fix the problem, the URL should be: https://zh3.svn.beanstalkapp.com/repo

+4
source

I had the same problem .. until I remembered that I needed https in front

+2
source

- , http. , https. HTTPS://my_name.svn.beanstalkapp.com/blog

+2

I had the same error. In our case, this is Mcafee antivirus software in the server repository, stealing the file when executed through subversion. The result is a svn error.

Disabling virus software solved our problem.

0
source

Source: https://habr.com/ru/post/1706989/


All Articles