无法通过HTTPS克隆私有Github存储库

时间:2017-10-29 10:55:14

标签: git github

我在通过HTTPS克隆私有GitHub存储库时遇到问题。如果我尝试使用以下方法克隆我的存储库:

git clone https://github.com/{username}/{repository}

我收到错误:

fatal: remote error: Repository not found

当我尝试在请求中输入我的凭据时:

git clone https://{username}@github.com/{username}/{repository}

我收到错误:

fatal: Unable to look up {username}@github.com (port 9418)

克隆ssh无需工作。克隆公共存储库也适用于https。有人知道我能做什么吗? 我正在使用Windows 10和git for windows version 2.14.13

1 个答案:

答案 0 :(得分:4)

您可以使用以下命令克隆存储库:

git clone https://username@github.com/username/repo_name

还可以通过以下方式检查您的git配置:

git config -l