ssh接続したのにgit pullとかしたときに
こんなのが出た時↓
ssh: connect to host heroku.com port 22: Connection refused
fatal: Could not read from remote repository.
Please make sure you have the correct access rights
and the repository exists.
多分sshでつながっていないだけ。
git remote -v
これでremoteのurlの一覧が出てくるので
そこがhttpsになってないはず
git remote set-url test-stg https://git.heroku.com/test-stg.git
みたいにやればOKだと思う。