エラー内容
Railsチュートリアル第9章の最後でgitにpush後、herokuにデプロイしようとしたら以下のようなエラーが発生。
$ git push heroku master
Username for 'https://git.heroku.com': ~~~
Password for 'https://~~~@git.heroku.com':
remote: ! WARNING:
remote: ! Do not authenticate with username and password using git.
remote: ! Run `heroku login` to update your credentials, then retry the git command.
remote: ! See documentation for details: https://devcenter.heroku.com/articles/git#http-git-authentication
fatal: Authentication failed for 'https://git.heroku.com/~~~.git/'
エラー文にheroku login
を実行して下さいと書いてあるので
$ heroku login
を実行したがherokuにログインできない。
解決
調べてみると、heroku login --interactive
を実行してみると解決できるかも。
$ heroku login --interactive
ログイン情報を打ち込んで無事ログイン!その後
$ git push heroku master
で無事デプロイ完了!
参考記事