私はnodegitが初めてです。リポジトリの最新の 10 個のコミット、変更されたファイル、およびそれぞれのコミットで導入された変更を確認したいと考えています。
最近の 10 個のコミットのリストを取得しましたが、コミットの詳細を取得するのに行き詰まっています。
これが私が使用しているコードです
var nodegit = require('nodegit');
var repoPath = "some_repo_path";
//open branch
nodegit.Repository.open(repoPath).then(function(repo){
//get branch
return repo.getCurrentBranch().then(function(ref) {
console.log("On " + ref.shorthand() + " (" + ref.target() + ")");
//get commit
return repo.getBranchCommit(ref.shorthand());
}).then(function(commit) {
//get commit history
var history = commit.history();
p = new Promise(function(resolve, reject) {
history.on("end", resolve);
history.on("error", reject);
});
history.start();
return p;
}).then(function(commits){
//iterate through last 10 commits
for (var i = 0; i < 10; i++) {
var sha = commits[i].sha().substr(0,7),
msg = commits[i].message().split('\n')[0];
console.log(sha + " " + msg + " " + commits[i].author() + " " + commits[i].time());
//get details for this commit
//number of lines added/removed
//list of files changed/deleted
//for each changed file number of lines added/removed
//for each changes file actual lines added/removed
}
});
});