forked from VegetableChicken-Group/WanAndroid_Multi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
git-hook.gradle.kts
55 lines (50 loc) · 1.98 KB
/
git-hook.gradle.kts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
/*
* 操控 Git 钩子文件的脚本
* 使用教程:https://git-scm.com/book/zh/v2/%E8%87%AA%E5%AE%9A%E4%B9%89-Git-Git-%E9%92%A9%E5%AD%90
*
* 由于钩子文件应该放到 .git/hooks 文件下,并且要去掉 .sh 后缀,
* 但为了以后好修改,所以将钩子文件以 sh 文件的形式放在了根项目的 hooks 文件夹下,
* 通过该脚本将文件移动到 .git/hooks 文件夹下
*
* 注意:
* 1、该脚本应该是在根目录下的 build.gradle.kts 中使用
* 2、部分系统可能存在权限问题,无法删除文件
* */
/*
* 我也不知道为什么这个文件会提示黄条:This script caused build configguration to fail, run ......
* 但不影响正常运行,所以就不要管它
* */
val hooksFile = rootDir.absoluteFile.resolve("hooks")
val gitHookFile = rootDir.absoluteFile.resolve(".git").resolve("hooks")
fun moveHookFile(action: ((File) -> Unit)? = null) {
hooksFile.listFiles()?.forEach { file ->
val newFile = gitHookFile.resolve(file.name.substringBeforeLast(".sh"))
if (newFile.exists()) {
if (!newFile.delete()) {
println("${newFile.absolutePath} 删除失败\n大概率是 gradle 脚本没有权限删除旧的 hook 文件\n请在 git-hook.gradle.kts 中添加权限设置!")
return
}
}
copy {
from(file)
into(newFile.parentFile)
rename { it.substringBeforeLast(".sh") }
}
action?.invoke(file)
}
}
// 将 根目录下的 hooks 移动到 .git/hooks 的 task
// 已生成了 group 为 hook,名字叫 git-hook-move 的任务
val moveTask = tasks.register("git-hook-move") {
group = "hook"
doFirst {
println("正在移动 git 钩子文件:")
moveHookFile {
println("${it.name} 已复制到 .git/hooks 文件下")
}
println("git 钩子文件移动完毕")
}
}
// 因为每次 clone 项目 .git/hook 文件都会还原,加上不好区分是否过期
// 所以只能每次刷新 gradle 都移动一遍,文件目前就一个,几乎不花时间
moveHookFile()