対応方法をいつも忘れるのでメモ。
環境
macOS Monterey 12.3.1
エラー内容
Githubトークンの期限が切れていたのでトークンを再生成した。
その後、git push
すると認証エラーが出た。
ターミナル
$ git push origin HEAD
remote: Invalid username or password.
fatal: Authentication failed for 'https://github.com/username/repository.git/'
ここでパスワードを更新する方法を調べるが良い方法が出てこない。
対処方法
再度 git push
する。
ユーザー名、パスワードを聞かれるので入力すれば更新できる。
ターミナル
$ git push origin HEAD
Username for 'https://github.com': username
Password for 'https://username@github.com':