gpt4 book ai didi

node.js - Nodegit https 身份验证

转载 作者:太空宇宙 更新时间:2023-11-04 00:39:37 26 4
gpt4 key购买 nike

我正在尝试实现nodegit来使用gitlab进行repo控制,但是我需要使用基本的用户名密码身份验证,并且文档仅使用ssh。我尝试使用 Cred.userpassPlaintextNew 但我得到 [错误:重定向或身份验证重播太多],如下所示:

var nodegit = require('nodegit'),
path = require('path');

var url = "https://gitlab.com/myuser/myrepo.git",
local = "./clone",
cloneOpts = {
fetchOpts: {
callbacks: {
credentials: function() {
return nodegit.Cred.userpassPlaintextNew('myuser','mypass')
}
}
}
};


nodegit.Clone(url, local, cloneOpts).then(function (repo) {
console.log("Cloned " + path.basename(url) + " to " + repo.workdir());
}).catch(function (err) {
console.log(err);
});

我该怎么做?

最佳答案

最终通过子进程实现 git。 Nodegit 库有很多问题,包括锁定目录,这样即使函数返回后也无法删除它们。

关于node.js - Nodegit https 身份验证,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37443604/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com