当我git pull
时,我收到以下错误
remote: Repository not found.
fatal: repository 'https://github.com/repo.git' not found
但是当我运行git pull https://username@github.com/repo.git
时,git能够提取回购并且不会要求输入密码。
为什么我现在需要提及我的用户名?
PS:我确实设置了git config user.name username
配置文件的一部分
[core]
repositoryformatversion = 0
filemode = true
bare = false
logallrefupdates = true
ignorecase = true
precomposeunicode = true
[remote "origin"]
url = https://github.com/repo.git
fetch = +refs/heads/*:refs/remotes/origin/*
[user]
name = github_username
答案 0 :(得分:0)
我不认为 git 用户名和github用户名是相同的。 git 用户名是本地计算机上提交的标识符。
是否可能错误地输入了存储库的路径?例如,您可以登录github并查看“克隆或下载”下的URL进行检查。在大多数情况下,它采用以下形式
答案 1 :(得分:0)
你确定你试图通过http两次拉?第二条路径(没有https)对我来说似乎是ssh身份验证。 如果您设置了ssh,git不会要求您进行身份验证,因为ssh密钥是您的实际身份验证。