首页 > 解决方案 > 为什么flutter pub找不到我的github ssh-key?

问题描述

我的颤振应用程序依赖于一个私有托管在 github 上的模块。
当我pub get从 Powershell 运行时,我得到:

Git error. Command: `git clone --mirror ssh://git@github.com:dirkbo/repo-name.git C:\src\flutter\.pub-cache\git\cache\repo-name-123ba`
stdout:
stderr: Cloning into bare repository 'C:\src\flutter\.pub-cache\git\cache\repo-name-123ba'...
git@github.com: Permission denied (publickey).
fatal: Could not read from remote repository.

Please make sure you have the correct access rights
and the repository exists.
exit code: 128

当我复制失败的命令并直接在同一个 powershell 中运行时:

git clone --mirror git@github.com:dirkbo/repo-name.git C:\src\flutter\.pub-cache\git\cache\repo-name-123ba

一切正常:

Cloning into bare repository 'C:\src\flutter\.pub-cache\git\cache\repo-name-123ba'...
Enter passphrase for key '/c/Users/dirkb/.ssh/id_rsa':
remote: Enumerating objects: 229, done.
remote: Counting objects: 100% (229/229), done.
remote: Compressing objects: 100% (132/132), done.
remote: Total 229 (delta 13), reused 229 (delta 13), pack-reused 0
Receiving objects: 100% (229/229), 19.32 MiB | 1.45 MiB/s, done.
Resolving deltas: 100% (13/13), done.

在我的pubspec.yaml尝试中:

repo:
    git: ssh://git@github.com/dirkbo/repo-name.git

(结果见上)

repo:
    git: git@github.com:dirkbo/repo-name.git

这给了我:

Git error. Command: `git fetch`
stdout:
stderr: git@github.com: Permission denied (publickey).
fatal: Could not read from remote repository.

Please make sure you have the correct access rights
and the repository exists.
exit code: 128

运行的批处理命令似乎pub get找不到我的 ssh 密钥。

标签: gitfluttergithubssh

解决方案


问题是 Windows 没有使用正确的 ssh 程序,而不是 openssh 使用的是它的内部 ssh 程序,它当然不知道我在 openssh 中的密钥。

git config --global core.sshCommand "'C:\Windows\System32\OpenSSH\ssh.exe'"

因此,在将 git 配置为使用 OpenSSH 之后,flutter pub get找到我的密钥,要求输入密码并正确提取包。

感谢https://github.com/desktop/desktop/issues/5641#issuecomment-421801704


推荐阅读