node-git
- 授权协议: MIT
- 开发语言: JavaScript
- 操作系统: 跨平台
- 软件首页: https://github.com/creationix/node-git
软件介绍
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();
});
