エラー内容
gitにpushした後、herokuにあげようとコマンド打ったら以下の認証系のエラーが発生。
$ git push heroku master
Username for 'https://git.heroku.com': yuichisan171
Password for 'https://yuichisan171@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/musicquest.git/'
password忘れたせいか進まない...
解決
herokuにログインするコマンドをぶち込みます。
$ heroku login
› Warning: heroku update available from 7.41.1 to 7.47.0.
heroku: Press any key to open up the browser to login or q to exit:
Opening browser to https://cli-auth.heroku.com/auth/cli/browser/ab6b9c8d-641a-47a2-80e1-08d519468767?requestor=SFMyNTY.g3QAAAACZAAEZGF0YW0AAAANMTI0LjM1LjY3LjIzNGQABnNpZ25lZG4GADZ5IoR1AQ.g7NF0zMSV_VBECPITWE6xcIYOPKq0qt_RCEoaKDG0os
Logging in... done
Logged in as <メールアドレス>
herokuにpushします
$ git push heroku master
Enumerating objects: 92, done.
Counting objects: 100% (92/92), done.
<以下略>
お、うまく行きましたね!
同時にパスワード管理超大事っすね。