是否可以在使用 grgit 插件提交和推送更改时在 git 中创建标签...??
这是我将更改推送到 git 的代码。
task pushChangestoGit()
{
def grgit = org.ajoberstar.grgit.Grgit.open(dir: '.')
grgit.add(patterns: ['version.properties'])
grgit.commit(message: 'Committing Version Property Changes')
grgit.push(force: true)
}