I am getting the following error when trying to push from my local machine to a new git repo on my WebFaction account:
HTTP 411 apparently means the server was expecting a Content-Length header. I have git version: 1.7.2.3.msysgit.0 asked 19 Nov '11, 14:01 anentropic |
Ok, googled some and found it was my http 'post buffer' was too small. Setting it to be enormous fixed it:
http://stackoverflow.com/questions/2702731/git-fails-when-pushing-commit-to-github answered 19 Nov '11, 14:06 anentropic |