使用grunt-git将文件提交到存储库

时间:2016-09-17 09:42:39

标签: node.js git github gruntjs

我想使用grunt将我的应用代码推送到已经存在的github存储库。为了做同样的事情,我试图使用grunt-git包但没有任何成功。

我的咕噜声配置如下 -

 gitcommit: {
        task: {
            options: {
                message: 'Testing',
                noVerify: true,
                noStatus: false,
                force: true
            }
        }
    }

根据文档,在我看来,如果已经将目标存储库添加到项目中,我们就不必指定目标存储库!

执行grunt任务时,它会继续发出警告 -

Use --force to continue.

即使使用此命令也无效。

有人可以分享一个关于如何使用grunt-git包的例子,甚至让我知道我到底做错了什么?

0 个答案:

没有答案