2021年の8月ぐらいから、招待された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. fatal: Authentication failed for 'https://github.com/UserName/RepositoryName/'
git cloneした時に入力するパスワードをアクセストークンに置き換えればOK。
githubログイン後にsetting->Developer Setting->Personal access tokensからtokenを作成できるようです。※トークンの権限としてはrepo,admin:repo_fook,delete_repoあたりにチェックを入れておけばレポジトリの基本的な操作には困らないようです。
コメント