我正在尝试从pygit2
/ libgit2
push_refspec = git_repo.lookup_reference('HEAD').resolve().name
logger.info("Pushing " + push_refspec)
git_remote.push(push_refspec)
但是,我收到有关遗失凭据的错误:
_pygit2.GitError: Cannot set up SSH connection without credentials
这最终来自libssh2
来自libgit2
(transports/ssh.c
)的来电:
if (user && pass) {
if (git_cred_userpass_plaintext_new(&t->cred, user, pass) < 0)
goto on_error;
} else if (t->owner->cred_acquire_cb) {
if (t->owner->cred_acquire_cb(
&t->cred, t->owner->url, user,
GIT_CREDTYPE_USERPASS_PLAINTEXT |
GIT_CREDTYPE_SSH_KEY |
GIT_CREDTYPE_SSH_CUSTOM,
t->owner->cred_acquire_payload) < 0)
goto on_error;
if (!t->cred) {
giterr_set(GITERR_SSH, "Callback failed to initialize SSH credentials");
goto on_error;
}
} else {
giterr_set(GITERR_SSH, "Cannot set up SSH connection without credentials");
goto on_error;
}
使用Git客户端的存储库中的push
工作得很好。我试过GIT_SSL_NO_VERIFY=true
(不出所料)不起作用。
我需要设置哪些额外信息才能使其正常工作?
答案 0 :(得分:4)
看起来pygit2还没有支持libgit2的凭证网络操作。有some API discussion happening,但没有最终确定。
编辑:此答案被接受后,似乎已实施此功能。 documentation对此有一些注意事项。