是否可以通过 grgit plugin for gradle 只提交一个文件。?
我已经修改了version.properties
文件,我只需要使用 grgit 插件将该特定文件提交回 git。
但是当我 Commit back to 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)
}