I'm trying to push the changes to Git remote repository, but got ended with following error message -
error: RPC failed; HTTP 500 curl 22 The requested URL returned error: 500 INKApi Error fatal: The remote end hung up unexpectedly fatal: The remote end hung up unexpectedly Everything up-to-date
I have followed the steps below till now -
- Made required configuration to clone the package
git config --global http.proxy http://mydomain\myusername:mypassword@myproxyserver:8080
- Cloned the repository using following line -
git clone http://mypackageurl
- Made some changes in existing method and saved the file
- Then executed following commands to add, commit & push
git add testpath/updatedfile.py
git commit -m "Updating sample script"
git push
git push origin master
But no luck, getting same error mentioned above.
Git clone was successful, didn't face any issue in that. While trying to push the change only getting HTTP 500 error. And I've installed GitHub desktop application and trying all these stuffs through Git Shell