我正在尝试设置一个Git / Bitbucket帐户,以便我可以控制我的一个项目。我创建了一个Bitbucket帐户,并为自己创建了一个存储库。
我在Atlassian文档中的Clone Your Git Repo and Add Source Files的第1部分第8部分。
我一直收到这个错误:
fatal: could not read Password for 'https://newuserme@bitbucket.org': No such file or directory
所以我运行了命令
git config --global core.askpass
然后再次尝试,它仍然没有提示我输入密码。我在这里错过了什么? (注意:我使用的是实际存储库中的克隆链接,而不是此处显示的链接。:))
答案 0 :(得分:3)
而不是git config --global core.askpass,您可以尝试:
git config --global core.askpass /usr/libexec/git-core/git-gui--askpass
(如GitExtensions issue 85中所述)
请注意,您还可以使用凭据帮助程序来缓存密码:例如,请参阅“How to configure GIT on Windows 7 to push project to Google Code”。
答案 1 :(得分:0)
在Windows上,这对我有用:
git config --global credential.helper wincred