I\'ve searched around for many hours on end looking to a solution to my seemingly easy-to-fix problem. It\'s not that my search turned up nothing, it\'s that my search turne
I use this method to solve this problem Maybe you can try it
"Enable ssh-agent"
http://git-scm.com/
Install it
Enable ssh-agent
C:\Program Files\Git\cmd
start-ssh-agent
The message disapper after I agent enabled Hope this will help you
The problem I was having is that I was only using https for my GitHub account. I needed to make sure that my GitHub account was setup for ssh access and that GitHub and heroku were both using the same public keys. These are the steps I took:
Navigate to the ~/.ssh directory and delete the id_rsa and id_rsa.pub if they are there. I started with new keys, though it might not be necessary.
$ cd ~/.ssh
$ rm id_rsa id_rsa.pub
Login to heroku, create a new site and add your public keys:
$ heroku login
...
$ heroku create
$ heroku keys:add
$ git push heroku master