#内容
編集したアプリをgithubにpushした後、herokuにデプロイしようとしたところパスワードの要求をされましたが、、、
$ git push heroku HEAD
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/your_app.git/'
usernameかpasswordどちらかを間違えたのか、怒られました。
#解決法
ひとまず、言われた通り
$ heroku login
を試してみると、
heroku: Press any key to open up the browser to login or q to exit:
と言われたので、テキトーにキーを押すと、herokuのloginページのブラウザが立ち上がります。
Logging in... done
Logged in as メールアドレス
ログインできたっぽい!
その後、
$ git push heroku HEAD
を実行すると、、、、デプロイできた!!!