Signed-off-by: Andy Scherzinger <info@andy-scherzinger.de>
This commit is contained in:
Andy Scherzinger 2022-04-03 11:54:19 +02:00 коммит произвёл Marcel Hibbe
Родитель 402a1bd3c3
Коммит 0f4f04da8d
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: C793F8B59F43CE7B
2 изменённых файлов: 17 добавлений и 0 удалений

Просмотреть файл

@ -141,6 +141,15 @@ If you set your `user.name` and `user.email` git configs, you can sign your comm
You can also use git [aliases](https://git-scm.com/book/tr/v2/Git-Basics-Git-Aliases) like `git config --global alias.ci 'commit -s'`.
Now you can commit with `git ci` and the commit will be signed.
### Git hooks
We provide git hooks to make development process easier for both the developer and the reviewers.
To install them, just run:
```bash
./gradlew installGitHooks
```
## Contribution process
Contribute your code targeting/based-on the branch ```master```.

Просмотреть файл

@ -334,6 +334,14 @@ dependencies {
gplayImplementation "com.google.firebase:firebase-messaging:23.0.0"
}
task installGitHooks(type: Copy, group: "development") {
description = "Install git hooks"
from("../scripts/hooks") {
include '*'
}
into '../.git/hooks'
}
detekt {
reports {
xml {