Mobaxterm终端中的Git凭证
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Mobaxterm终端中的Git凭证相关的知识,希望对你有一定的参考价值。
我正在使用mobaxterm本地终端。我想使用git命令。它的工作原理除了凭证:
➤ git pull
ssh_askpass: exec(/usr/lib/ssh/ssh-askpass): No such file or directory
Host key verification failed.
fatal: Could not read from remote repository.
Please make sure you have the correct access rights
and the repository exists.
我尝试过设置凭证,但没有任何作用:
[05/03/2018 08:03.49] ~/dsf
[sylvain.auger-leger.vbw-sau-13] ➤ git git config --global credential.helper cache
✔
[05/03/2018 08:04.29] ~/dsf
[sylvain.auger-leger.vbw-sau-13] ➤ git config --global credential.helper cache
✔
[05/03/2018 08:04.30] ~/dsf
[sylvain.auger-leger.vbw-sau-13] ➤ git config --global credential.helper 'store --file ~/.my-credentials'
✔
答案
git凭证帮助程序有助于https凭据缓存,而不是ssh。
首先检查您的远程URL是否为SSH:
git remote -v
如果是(ssh://
或git@xxx:user/repo
)那么:
- 检查
~/.ssh
中是否有公共/私人ssh密钥 - 或者如果可能,请切换到https:
git remote set-url origin https://url/remote/repo
以上是关于Mobaxterm终端中的Git凭证的主要内容,如果未能解决你的问题,请参考以下文章