Search Gradle plugins

Version 0.4.6

0.4.6

Created 17 January 2021.

This plugin allows to add, commit and push files programmatically

Add this plugin to your build using the plugins DSL:

plugins {
  id("io.github.git-utils") version "0.4.6"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("io.github.ciriti:git-utils:0.4.6")
      }
    }
    
    apply(plugin = "io.github.git-utils")
  • Applying plugins to all subprojects .