Error: RPC failed; curl 55 The requested URL returned error: 401 when pushing to GIT from R Studio

I have dig in to the commits and found out that I had mistakenly committed a very large file which failed the push.

I have used git log origin..HEAD in my Ubuntu 18.04 AWS EC2 console to see that there are old commits there that haven't been pushed.

I have git reset HEAD~1 --soft to reset these two commits and corrected the files I want to commit and push in my R-Studio Server.

That's all the story, hope it will help others that have similar issues.


I had the same issue. And increasing the size of the http.postbuffer with this command fixed my issue:

git config --global http.postbuffer 2097152000 

https://community.atlassian.com/t5/Bitbucket-questions/BitBucket-Disconnects-During-Long-Upload-Downloads/qaq-p/1170485