ssh:无法解析主机名github.com:名称解析临时失败致命错误:无法从远程存储库读取

gzszwxb4  于 2023-03-16  发布在  Git
关注(0)|答案(1)|浏览(338)

无法PULL Github存储库,出现以下错误

ssh: Could not resolve hostname github.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.
jtoj6r0c

jtoj6r0c1#

我已经检查了我的ssh和git remote -vssh -T git@github.com和所有的工作正常,我仍然得到错误.原因是因为我在错误的工作文件夹上初始化.意思是,在你mkdir为你的工作区,你然后应该在你是的当前文件夹中初始化.我犯了进入工作区的文件夹的错误,然后git初始化它,因此git不知道我的工作区域在哪里。
示例:
这是错误的:

current-dir$> mkdir new-git
current-dir$> cd new-git
current-dir/new-git$> git init new-git

正确的程序是:

current-dir$> mkdir new-git
current-dir$> git init new-git

去查一下可能会有帮助。

相关问题