I have a copy a source code which I added to my commit of Azure DevOps Git Repo and trying to push it to cloud. It keeps failing with the following error
RPC failed; HTTP 503 curl 22 The requested URL returned error: 503
I tried setting git config --global http.postBuffer 157286400
nothing is helping
$ git push --set-upstream origin dummy
Enumerating objects: 1653, done.
Counting objects: 100% (1653/1653), done.
Delta compression using up to 8 threads
Compressing objects: 100% (847/847), done.
Writing objects: 100% (1651/1651), 143.86 MiB | 292.86 MiB/s, done.
Total 1651 (delta 765), reused 1648 (delta 764)
error: RPC failed; HTTP 503 curl 22 The requested URL returned error: 503
fatal: the remote end hung up unexpectedly
fatal: the remote end hung up unexpectedly
Everything up-to-date
Tried all options in this asnwer: https://stackoverflow.com/a/50470075/942855 but no use
How do I overcome this challenge and push my code to Azure Git?