node-git 是 Node.js 的扩展,用来读取 Git 资料库。
示例代码:
var sys = require('sys'); // Git("/Users/tim/git/howtonode.org.git"); Git("/Users/tim/Code/howtonode.org"); Git.log("articles/what-is-this.markdown", function (err, data) { if (err) throw err; sys.p(data); process.exit(); });