2021.10.12

久しぶりにGitHubにpushしようとしたらエラーが出た

最近GitHubに更新したサイトのデータあげていなかったからあげようと思ったらなにやらエラーが出た。

$ git add .
$ git commit -m "20211012"
$ git push origin master

でGitHubアイパス入力したらこんなエラーが出た

remote: Support for password authentication was removed on August 13, 2021. Please use a personal access token instead.
remote: Please see https://github.blog/2020-12-15-token-authentication-requirements-for-git-operations/ for more information.

どうやら2021年8月13日でパスワードでGitHubのデータのやり取りできなくなったらしい。

パスワードの代わりに期限つきのアクセストークンが必要になるようなので▼これみながら作る。
https://docs.github.com/ja/authentication/keeping-your-account-and-data-secure/creating-a-personal-access-token

作ったトークンをパスワードの代わりに使う。

多分また忘れてパスワードでつなごうとするから記事に残しておく…。