1. 首页
  2. 数据库
  3. 其它
  4. git hooks gradle plugin:直接从Gradle构建脚本配置共享Git钩子 源码

git hooks gradle plugin:直接从Gradle构建脚本配置共享Git钩子 源码

上传者: 2021-05-01 00:35:39上传 ZIP文件 69.8KB 热度 32次
git-hooks-gradle-plugin 直接从构建脚本配置共享 设置 Groovy plugins { id ' com.github.jakemarsden.git-hooks ' version ' x.x.x ' } Kotlin plugins { id( " com.github.jakemarsden.git-hooks " ) version " x.x.x " } 用法示例 简单的 在每次提交之前, check确保check任务成功: Groovy gitHooks { hooks = [ ' pre-commit ' : ' check ' ] } Kotlin gitHooks { setHooks( mapOf ( " pre-commit " to " check " )) } 输出 下一次任何Gradle任务运行时,这将创建一个.gi
用户评论