当前位置: 首页 > 工具软件 > NodeGit > 使用案例 >

NodeGit —— Node.js 的 Git 客户端开发包

秦建元
2023-12-01

NodeGit 详细介绍
NodeGit 是 libgit2 的 Node.js 绑定版本。

示例代码:

var Git = require("nodegit");

//clone
Git.Clone("http://git.oschina.net/ld/J2Cache.git", "tmp").then(function(repository) {

});

//open 
Git.Repository.open("tmp").then(function(repository) {

});

文章转载自 开源中国社区 [http://www.oschina.net]

 类似资料: