在使用Sourcetree时,我一直收到错误消息
git: 'credential-oskeychain' is not a git command. See 'git --help'.我很确定Sourcetree / git应该使用
credential-osxkeychain"(请注意osx中的X,它在原始错误中丢失了)
我如何改变这一点?我到底是怎么设置Sourcetree / Git来拥有这个输入错误的命令的呢?我似乎找不到该在哪里进行更改
我跑过了
locate credential-oskeychain一点也不奇怪,什么也没找到。
locate credential-osxkeychain返回
/opt/local/bin/git-credential-osxkeychain在其他几个人中
提前感谢您帮助新手使用Sourcetree
发布于 2014-05-09 04:28:49
您的帮助凭据拼写错误。您的~/.gitconfig文件应包含以下条目:
[credential]
helper = osxkeychain但可能会有这样的结果:
[credential]
helper = oskeychainhttps://stackoverflow.com/questions/15321592
复制相似问题