我正在使用几个存储库,但最近我只在我们的内部存储库中工作,一切都很好。
今天我不得不提交并将代码推到另一个,但我遇到了一些麻烦。
$ git push appharbor master
error: The requested URL returned error: 403 while accessing https://gavekortet@appharbor.com/mitivo.git/info/refs?service=git-receive-pack
fatal: HTTP request failed
没有什么我能做的,这将再次带来密码输入。
我如何重置系统上的凭据,以便Git询问我该存储库的密码?
我试过:
Git配置——global——unset core.askpass
以便取消设置密码
Git配置凭证。Helper '缓存超时=1'
为了避免凭证缓存…
似乎什么都不管用;谁有更好的主意?
我遇到了与op相同的问题。它正在取我存储在系统某处的旧Git凭据,而我想将Git与我的新凭据一起使用,所以我运行了该命令
$ git config --system --list
它显示
credential.helper=manager
每当我执行git推送时,它都会使用我的旧用户名,我设置了很久,我想使用新的GitHub帐户来推送更改。我后来发现我的旧GitHub帐户凭据存储在
控制面板→用户帐户→凭证管理器→管理Windows凭证。
我只是删除了这些凭据,当我执行git推送时,它要求我提供我的GitHub凭据,它就像一个魅力。
如果此问题发生在Windows计算机上,请执行以下操作。
Go to Credential Manager
in German, it is called: Anmeldeinformationsverwaltung
in French, it is called: Gestionnaire d'identification
in Polish, it is called: Menedżer poświadczeń
in Portuguese, it is called: Gerenciador de Credenciais
in Russian, it is called: Диспетчер учётных данных
in Spanish, it is called: Administrador de credenciales
in Norwegian, it is called: Legitimasjonsbehandling
in Czech, it is called: Správce pověření
in Dutch, it is called: Referentiebeheer
Go to Windows Credentials
Delete the entries under Generic Credentials
Try connecting again. This time, it should prompt you for the correct username and password.