0

嗨,我正在尝试在git push origin master的帮助下执行命令Nodegit,但这会导致错误,

var Git = require('nodegit');
function gitRemoteLookUp(repoPath) {
var open = Git.Repository.open;
var Remote = Git.Remote;    
open(repoPath).then(function(repo){
    return Remote.lookup(repo, "origin");
}).then(function(remote){       
    var ref = "refs/heads/master:remotes/origin/master";                
    var firstPass = true;
    var options = {
      callbacks: {
        credentials: function(url, userName) {
          if (firstPass) {
            firstPass = false;
            if (url.indexOf("https") === -1) {                  
              return Git.Cred.sshKeyFromAgent('XYZ');
            } else {                    
                return Git.Cred.userpassPlaintextNew('XYZ', "XYZ");
            }
          } else {
            return Git.Cred.defaultNew();
          }
        },
        certificateCheck: function() {
          return 1;
        }
      }
    };
    return remote.push(ref, options);
}).catch(function(err){
    console.log(err);
})
}

我正在使用我们的内部 ssh github 服务器,它来自 git Bash,每次推送都要求输入用户名和密码。

因此,在代码中,我使用了github 站点测试站点中提到的类似示例。

请帮助解决这个问题!!!!!!

4

1 回答 1

1

我找到了自己问题的答案,

混淆在于SSH服务器和通用服务器,

我在过去的 nodegit 问题中发现了两个很棒的帖子,

var remote;
var repository;
function gitRemoteLookUp(repoPath) {
    var open = Git.Repository.open;     
    open(repoPath).then(function(repo){
        repository = repo;
        return repo.getRemote('origin');
    }).then(function(remoteResult){
        remote = remoteResult;          
        remote.setCallbacks({
              credentials: function(url, userName) {
                  // return Git.Cred.sshKeyFromAgent(userName);
                  return Git.Cred.userpassPlaintextNew('XYZ', "XYZ");
              }
          });


        return remote.connect(Git.Enums.DIRECTION.PUSH);
    }).then(function() {
      console.log('remote Connected?', remote.connected())

      return remote.push(
                ["refs/heads/master:refs/heads/master"],
                null,
                repository.defaultSignature(),
                "Push to master")
    }).then(function() {
        console.log('remote Pushed!')
    })
    .catch(function(reason) {
        console.log(reason);
    });
}

主要问题在于在 Nodegit 库中配置凭据。请仔细检查它是否是基于 SSH 密钥的推送,或者它是否适用于通用 userpassPainTestNow 模式。我已经评论了这两种情况。事实证明,这些链接对于解决此问题非常有用。 Nodegit:如何修改文件并推送更改? https://github.com/nodegit/nodegit/issues/463

于 2015-08-12T17:33:02.330 回答