1

我在 NodeJs 中构建了这个函数,

var Git = require('nodegit');
var fse = require('fs-extra');
var path = require('path');
var fs = require('fs');
var repoPath = 'D:\\sample'

function gitCommitHistory(repoPath, callbackGitCommitHistory) {
try {
    var open = Git.Repository.open;
    var commitList = [];
    open(repoPath)
      .then(function(repo) {              
        return repo.getMasterCommit();
      })
      .then(function(firstCommitOnMaster) {
        var history = firstCommitOnMaster.history();            
        history.on("commit", function(commit) {
            if (commit === 'undefined') {
                callbackGitCommitHistory(null, commitList);
            }
          var author = commit.author();
          commitList.push({commitAuthor:author.name(),commitAuthorEmail:author.email(), 
              commitMessage:commit.message(), commitSha:commit.sha(), commitDate:commit.date()});
        });
        history.on("error", function(err){
            console.log(err)
        })
        history.on("end", function(){               
            callbackGitCommitHistory(null, commitList);
        });
        history.start();
      });   
} catch (error) {
    callbackGitCommitHistory(error);
}

};

我已经使用模块“Nodegit”构建了这个功能。他们使用 Promise 作为回调处理程序。

在函数中,我正在检索用户在存储库上完成的所有提交,并将其作为对调用 Web 服务的响应发送。

如果至少有一个提交,该函数可以正常工作,(即)repo.getMasterCommit 返回提交历史。但是,如果我将 repoPath 提供给零提交的新 repo,则该函数不会返回任何内容,因此我无法向调用 Web 服务发送任何响应。请帮助如何处理这种情况!!!!!!!!!!

4

1 回答 1

1

GitHub repo 上的相关问题。

这应该在下一个版本(0.5)中修复,目前通过661在 master 中修复。虽然 Ahmad Assaf 是正确的,但它拒绝了承诺链,因为没有头部提交。

于 2015-08-10T17:06:17.410 回答