使用Nodegit git push remote ssh,不工作?

时间:2015-08-12 16:51:15

标签: node.js git ssh nodegit node-github

您好我在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 sitetest site中提到的类似示例。

请帮忙!!!!!!

1 个答案:

答案 0 :(得分: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: How to modify a file and push the changes? https://github.com/nodegit/nodegit/issues/463