我正在尝试使用Nodegit插件将一些 git repos克隆到一个名为“tmp”的目录中,这样我就可以对实际文件夹进行操作(将其上传到服务器)。这是我的代码:
var git = require('nodegit');
var repos = [some https repo urls]
var options = {
remoteCallbacks: {
certificateCheck: function() {
return 1;
}
}
};
for(i = 0; i<repos.length; i++){
git.Clone(repos[i], './tmp', options).catch(function(err) { console.error(err); } );
}
它所做的只是在一瞬间创建一个名为“tmp”的空目录并将其删除。我得到的错误是./tmp' exists and is not an empty directory
(但它不存在?)和authentication required but no callback set
. 有人知道如何解决这些问题吗?