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. Please help
git clone http://mypackageurl
usually you cannot push over http, error says that your server responses 500 (internal server error), so check server logs for anything suspicious. Which git repo manager do you use? – kan