stupid issue with Github going on right now. I have a decent amount of changes (~120MB in size), when I attempt to push, this is what happens:
error: RPC fai
For those who use IIS 7 to host a git http
/https
endpoint:
You need to increase your uploadReadAheadSize
.
Launch Internet Information Services (IIS) Manager
Expand the Server field
Expand Sites
Select the site you want to make the modification for.
In the Features section, double click Configuration Editor
Under Section
select: system.webServer > serverRuntime
Modify the uploadReadAheadSize
section (The value must be between 0
and 2147483647
.)
Click Apply
Restart the Website
I had the same problem but I was using a reverse proxy.
So I had to set
client_max_body_size 50m;
inside both configure files :
I already had "HTTPS//" in the git URL yet faced this error.
All I did was to add option -u with push and it worked.
git push -u origin master
Was facing same issue. In my case it was non-compatible GIT versions across multiple users who are accessing(pull/push) same project.
have just updated GIT version and updated the path on Android studio settings and its working fine for me.
Edit -
Git for Windows (1.9.5) having some problem, updating the same may helps.
Need to change remote url to ssh or https
git remote set-url origin git@github.com:laravel/laravel.git
or
git remote set-url origin https://github.com/laravel/laravel.git
Hope, this will help :)