I want to push my rails application in heroku cloud. My internet is behind proxy. I have set my proxy in git bash by following command:
$ export http_proxy=http://host:port
Then I tried to push application by command:
$ git push heroku master
but it gives me error like:
ssh: heroku.com: no address associated with name
fatal: The remote end hung up unexpectedly
Then I set my proxy by command:
$ git config --global http.proxy http://host:port
But still getting the same error. Can you tell me what should I do for that?