无法PULL Github存储库,出现以下错误
PULL
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.
jtoj6r0c1#
我已经检查了我的ssh和git remote -v或ssh -T git@github.com和所有的工作正常,我仍然得到错误.原因是因为我在错误的工作文件夹上初始化.意思是,在你mkdir为你的工作区,你然后应该在你是的当前文件夹中初始化.我犯了进入工作区的文件夹的错误,然后git初始化它,因此git不知道我的工作区域在哪里。示例:这是错误的:
git remote -v
ssh -T git@github.com
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
去查一下可能会有帮助。
1条答案
按热度按时间jtoj6r0c1#
我已经检查了我的ssh和
git remote -v
或ssh -T git@github.com
和所有的工作正常,我仍然得到错误.原因是因为我在错误的工作文件夹上初始化.意思是,在你mkdir为你的工作区,你然后应该在你是的当前文件夹中初始化.我犯了进入工作区的文件夹的错误,然后git初始化它,因此git不知道我的工作区域在哪里。示例:
这是错误的:
正确的程序是:
去查一下可能会有帮助。