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.

Git Cloneできなくなった

Posted at

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できるようになる。

参考

【Git】2021年8月13日からGitでリモートにアクセスができなくなった。

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?