gpt4 book ai didi

git - Git凭证帮助程序会导致“找不到存储库”错误?

转载 作者:行者123 更新时间:2023-12-04 13:31:27 25 4
gpt4 key购买 nike

刚遇到这种Git行为,它看起来像是带有凭证存储区的错误:


$ git pull
Username for 'https://github.com': ...
Password for 'https://...@github.com': ...
Already up-to-date.
$ git config credential.helper store
$ git pull
remote: Repository not found.


然后,去编辑.git / config删除[credential] helper = store,然后git pull再次起作用。

是什么原因造成的?

如何使用凭据帮助程序而不会遇到此错误?

在Ubuntu 14.04上使用git版本1.9.1更新

UPDATE使用git版本2.9.3重新测试,结果相同。

更新我在〜/ .git-credentials中的github上有几个帐户。我用GIT_CURL_VERBOSE = 1 GIT_TRACE = 1运行了git,看起来它按照列出的顺序选择了第一个github帐户。

但是,我正在使用的仓库中的.git / config具有正确的user.email,在〜/ .git-credentials中确实有匹配的条目。它只是不使用该条目。

最佳答案

对我有用的是在.git文件夹中,我打开了配置文件。

现在您需要插入:

[credential "https://github.com/yourProjectPath"]

username = yourGithubUsername


之后,您可以使用:

git config credential.helper store


这会将其添加到配置文件中:

[credendial]
helper = store


确保配置文件末尾有此部分,并且在之前添加的“凭据”部分之前没有重复的配置文件

然后运行:

git pull


并填写您的密码。

关于git - Git凭证帮助程序会导致“找不到存储库”错误?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39239417/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com