I have been developing a web app on Microsoft Azure with a Git repository using Node.js and AngularJS.
It has been deploying successfully for the past few weeks and then today, I have added a small animation to the page using ng-show and @keyframes. When attempting to push these changes to the git, I get the following output:
C:\Users\Alexander\Documents\Azure\AlexH>git push origin master
Counting objects: 13, done.
Delta compression using up to 4 threads.
Compressing objects: 100% (10/10), done.
Writing objects: 100% (13/13), 49.24 KiB | 0 bytes/s, done.
Total 13 (delta 6), reused 10 (delta 3)
efrror: RPC failed; result=56, HTTP code = 0
atal: The remote end hung up unexpectedly
fatal: The remote end hung up unexpectedly
Everything up-to-date
I have read that this was due to the HTTP post buffer limit so I have attempted the following, giving no improvement:
git config http.postBuffer 524288000
I have also restarted the web app through the Azure Portal and retried the push, again giving no improvement.
I'd appreciate any help you can provide to resolve this.