Git Clone時のエラー
久しぶりにgithubを使った際、git cloenすると以下のようなエラーが発生した。
Cloning into 'OpenVPN'...
Username for 'https://github.com': xxxxxx
Password for 'https://XXXXXX@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/XXXXXX/OpenVPN.git/'
解決方法
GitHub上でトークンを新しく作成
・GitHubにアクセス
・Settingを開く
・Developer settingsを開く
・Personal access tokensを開く
・トークンを新しく作成する
Generate new tokenをクリック
・わかりやすい名前を付ける(Noteに入力)
・Scopesを指定する
repoとadmin:repo_hookとdelete_repoにチェックを入れる
・トークン作成
Generate tokenをクリック
作成されたトークンはどこかに保存しておく
git clone
git clone XXXXXX
username:ユーザーネームを入力
password:先ほど作成したトークンを入力
以上でgitcloneできるようになる。