我正在使用几个存储库,但最近我只是在我们的内部工作,一切都很棒。
今天我不得不提交并将代码推送到另一个中,但我遇到了一些麻烦。
$ git push appharbor mastererror: The requested URL returned error: 403 while accessing https://gavekortet@appharbor.com/mitivo.git/info/refs?service=git-receive-packfatal: HTTP request failed
没有什么我可以做的,这将再次带来密码输入。
如何重置系统上的凭据,以便Git会向我询问该存储库的密码?
我试过:
git config --global --unset core.askpass
为了解除密码
git config credential.helper 'cache --timeout=1'
为了避免凭据缓存…
似乎没有什么工作;有人有更好的主意吗?