0

我在 CentOS 6.7 上遇到了 nodegit 的问题。在我们的 Windows 开发环境中,我可以使用 nodegit 从远程克隆/推送/拉取。

但是,在 CentOS 上,我在克隆时收到以下错误:

响应中没有 Content-Type 标头

我们没有使用 Apache,只是使用标准的 GitLab rpm。GitLab 在 CentOS 机器上也运行良好——我能够从 Git Bash 成功拉取和推送。不幸的是,我需要通过 nodegit 以编程方式执行此操作,但它不起作用。

如果可能的话,我宁愿不必求助于 CURL——nodegit 对于我的项目来说确实是一个更有尊严的选择。

应该注意的是,我在 Gitlab 实例上使用基本的 HTTP 用户/密码进行授权,因为:

  • gitlab 和所有程序化的 git 东西都隐藏在服务器端,并且
  • 这是一个概念证明,看看 nodegit/gitlab 解决方案是否可行。

这是尝试克隆的功能 - 它在 Windows 上运行良好:

function pushUserUpdatesToGit(req, res, user, myItem, localPath) {
    var repo, index, oid, remote,
    userCreds = {
        credentials: function() {
            return nodegit.Cred.userpassPlaintextNew(user.username, user.pwd);
        }
    },
    authStuff = {
        remoteCallbacks: {
            credentials: userCreds.credentials,
            certificateCheck: function() { return 1;  }
        }
    };

    return nodegit.Clone.clone(myItem.GitLabRepoPath, localPath, authStuff)
        .then(function(theRepo) {
            repo = theRepo; // save it to reference in any callback we feel like
        }, function (err) {
            console.log("Error cloning repo: " + err );
            return handleError(res, err);
        }
    ).then(function() {
        return repo.openIndex();
    }, function (err) {
        return handleError(res, err);
    })
    // Some exciting stuff happens in here that I won't bore you all with
    .catch(function(error) {
        console.log("ERROR DOING GIT STUFF: " + error);
        return handleError(res, error);
    }).done(function() {
        console.log("done with git stuff");
        return res.json(200, myItem);
    });
}
4

1 回答 1

0

似乎您收到此错误是因为您的 git 服务器响应不支持 Smart HTTP ( https://git-scm.com/book/en/v2/Git-on-the-Server-Smart-HTTP )。

默认情况下,gitlab 的 nginx 配置支持这一点。您是否有机会在反向代理后面运行包含的 gitlab nginx 设置?

如果没有,并且您没有使用 gitlab 中包含的 nginx 设置,这可能会有所帮助:https ://gist.github.com/massar/9399764

于 2015-11-03T00:45:22.227 回答