6
2

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.

Windowsで git clone ができないの なぁぜなぁぜ?

Last updated at Posted at 2023-08-04

参考サイト

以下のサイトから引用しております。
https://ios-docs.dev/20210813support-for-password

git cloneがエラーになる

Windows環境でgitリポジトリからHTTPS接続のCloneコードをコピーして、git cloneコマンドを実行するとエラーになりクローンできない。

Git Bash.
$ git clone [リポジトリパス]

エラー原因

2021年8月13日からめ、ローカルからGithubにアクセスする際にパスワードではなく、個人アクセストークンが必要になったらしい。

解決方法

個人用アクセストークンを取得する

1.githubにアクセス

2.Settingsを開く
右上のアイコンからメニューを開き、Settingsを選択

3.Developer settingsを開く
Developer settingsをクリック

4.Personal access tokensを開く
Personal access tokensをクリック

5.トークンを新しく作成する
Generate new tokenをクリック
パスワードが聞かれたらパスワードを入力する

6.名前をつける
わかりやすい名前をつける。
自分は今回、MyToken+日付にした。

7.Scopesを指定する
「repo」と「admin:repo_hook」と「delete_repo」にチェックを入れる

8.トークン作成
Generate tokenをクリック

9.トークンをコピー

git cloneする

以下を実行するとgithubのユーザーネームと
先ほど取得したトークンを聞かれるので入力するとクローン完了する。

Git Bash.
$ git clone [リポジトリパス]
6
2
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
6
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?