0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

期限切れでPersonal Access Tokenを作り直したらgit pushできなくなった

Posted at

問題

git pushしようとしたら以下のようなエラーが出た。
どうやらPersonal Access Tokenが期限切れになっているようだ。

remote: Invalid username or password.
fatal: Authentication failed for 'https://github.com/xxx/yyy.git/'

そのためPersonal Access Tokenを削除→新規作成した。

その後、またgit pushしようとしたが、そもそもpush時にusernameとtokenを聞かれないためエラーが解消しない。

どこかにtokenの情報が保存されてしまっているようだ。

解決

だいぶ昔にghコマンドでログインしていたのを忘れていました……

gh auth login

こちらのコマンドで新しいtokenを使ってログインしなおし、git pushできるようになりました。

根本解決

Personal Access Tokenが期限切れになったときは、削除→新規作成ではなく、期限の延長をすればよかったようです。

GitHubのPersonal Access Tokenが期限切れした場合の対処

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?