エラー内容
1 2 3 4 5 6 |
[hoge@src]$ git push -u origin master Username for 'https://github.com': hoge Password for 'https://hoge@github.com': remote: Support for password authentication was removed on August 13, 2021. remote: Please see https://docs.github.com/en/get-started/getting-started-with-git/about-remote-repositories#cloning-with-https-urls for information on currently recommended modes of authentication. fatal: Authentication failed for 'https://github.com/hoge/sample.git/' |
このエラーの原因は、2021年8月13日以降、GitHubのリポジトリにアクセスするには、ユーザ名とパスワードではなくアクセストークンが必要になったためのようです。
そのため、このエラーを解決するには、Githubのアクセストークンを利用する必要があります。
リポジトリの設定
1 |
git remote set-url origin https://[アクセストークン]@github.com/your-name/project-name.git |
参考サイト
GitHubアクセストークン認証