Windows10のWSL2からGitクローンできません。
WSL上でやるためには何かひと手間加えないといけないのでしょうか?
ネットで調べてみたらプロキシー(?)というものを設定する必要があるみたいですが
そういうのもやらないといけないのでしょうか?ちなみにそこらへんは何もしていません
試したこと
###WSLインストールしたあと、、、 ###SSHキーを作成(パスフレーズなし) hogeUser@hogeHost:~/.ssh$ ssh-keygen -t rsa -f gitlab_rsa Generating public/private rsa key pair. Enter passphrase (empty for no passphrase): Enter same passphrase again: Your identification has been saved in gitlab_rsa Your public key has been saved in gitlab_rsa.pub The key fingerprint is: SHA256:********************** hogeUser@hogeHost The key's randomart image is: +---[RSA 3072]----+ |....*o+o o.o | ~ | . = . | +----[SHA256]-----+ ###公開鍵をGitLabへ登録する ###configファイルを以下のように設定した hogeUser@hogeHost:~/git$ cat ~/.ssh/config Host gitlab.com HostName gitlab.com User hogeGitUser IdentityFile ~/.ssh/gitlab_rsa ###すべての設定が終わった!cloneするぞ! hogeUser@hogeHost:~/git$ git clone git@gitlab.com:hoge/hogeRepository.git Cloning into 'hogeRepository'... ssh: Could not resolve hostname gitlab.com: Temporary failure in name resolution fatal: Could not read from remote repository. Please make sure you have the correct access rights and the repository exists. ###なんでや、、、 ###ちなみにHTTPSでクローンしたとき hogeUser@hogeHost:~/git$ git clone https://gitlab.com/hoge/hogeRepository.git Cloning into 'hogeRepository'... fatal: unable to access 'https://gitlab.com/hoge/hogeRepository.git/': Could not resolve host: gitlab.com
回答1件
あなたの回答
tips
プレビュー