是否可以通过grgit插件仅提交一个文件进行gradle。

我已经修改了version.properties文件,我只需要使用grgit插件将该特定文件提交回git。

但是当我重新提交到git时,整个项目就会重新提交到git branch。

我的代码

task pushToGit
{
    def grgit = org.ajoberstar.grgit.Grgit.open(dir: '.')
    grgit.commit(message: 'Committing Version Property Changes', all: true)
    grgit.push(force: true)
}

最佳答案

all上的grgit.commit选项类似于git commit -a标志。它将更改提交到所有跟踪的文件。要仅提交一个,您需要先将其添加到索引,然后再提交。

task pushToGit
{
    def grgit = org.ajoberstar.grgit.Grgit.open(dir: '.')
    grgit.add(patterns: ['version.properties'])
    grgit.commit(message: 'Committing Version Property Changes')
    grgit.push(force: true) // not sure I would recommend this
}

关于git - 是否可以通过grgit插件仅提交一个文件进行gradle。,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/38793715/

10-09 01:29