是否可以通过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)
}
答案 0 :(得分:2)
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
}