Warning: file_get_contents(/data/phpspider/zhask/data//catemap/2/github/3.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Node.js 是否有向github提交拉请求的grunt插件?_Node.js_Github_Open Source_Gruntjs - Fatal编程技术网

Node.js 是否有向github提交拉请求的grunt插件?

Node.js 是否有向github提交拉请求的grunt插件?,node.js,github,open-source,gruntjs,Node.js,Github,Open Source,Gruntjs,这似乎是一个非常有用的工具,可以帮助人们为开源库做出贡献。我会把答案从广播中删除。是的。使用github api包: (来自他们的文件) 创建拉请求 var pull = { title: message, body: "This pull request has been automatically generated by Prose.io.", base: "gh-pages", head: "michael" + ":" + "prose-patch", }; repo

这似乎是一个非常有用的工具,可以帮助人们为开源库做出贡献。我会把答案从广播中删除。

是的。使用github api包:

(来自他们的文件)

创建拉请求

var pull = {
  title: message,
  body: "This pull request has been automatically generated by Prose.io.",
  base: "gh-pages",
  head: "michael" + ":" + "prose-patch",
};
repo.createPullRequest(pull, function(err, pullRequest) {});

这是这里需要的特性:作者提到的测试问题已经结束。