我正在编写一个节点API服务器,需要在服务器上的git repo中向用户发送本地分支列表。很多地方建议使用NodeGit中的Repository#getReferenceNames,这就是我所做的:
exports.getBranches = function (req, res) {
NodeGit.Repository.open(config.database).then(function(repo) {
return repo.getReferenceNames(NodeGit.Reference.TYPE.LISTALL);
}).then(function (arrayString) {
res.status(200).json({message: "OK", data: arrayString});
}).catch(function (err) {
res.status(500).json({message: err, data: []});
}).done(function () {
console.log("finish");
});
};
但是,此函数返回所有分支。有没有办法只获得像命令行git branch
那样的本地分支?