diff --git a/research/git.mdwn b/research/git.mdwn
index 20e1868d0a39f8a1bf24e34ab7dd95748ad29c6e..c07abf9c86e5c090dda843b68c5d68538f048194 100644
--- a/research/git.mdwn
+++ b/research/git.mdwn
@@ -102,6 +102,7 @@ groups for each project so you're not bound to the `git` group.
 Further development
 -------------------
 
+* See [utils-git](https://git.fluxo.info/utils-git/about/) repository for useful scripts and plugins.
 * [gitly self-hosted](https://gitly.io).
 * [Git Large File Storage - Git Large File Storage (LFS) replaces large files such as audio samples, videos, datasets, and graphics with text pointers inside Git, while storing the file contents on a remote server like GitHub.com or GitHub Enterprise.](https://git-lfs.github.com/)  / [#792075 - ITP: git-lfs -- Git Large File Support. An open source Git extension for versioning large files - Debian Bug report logs](https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=792075).
 * signed commits:
@@ -118,11 +119,3 @@ Further development
   * https://github.com/git/git/blob/v2.3.0/Documentation/config.txt#L2155
   * http://stackoverflow.com/questions/1764380/push-to-a-non-bare-git-repository
   * http://bitflop.com/tutorials/git-bare-vs-non-bare-repositories.html
-* Write a "git" interceptor:
-  * Check proper user/email config.
-  * Automatically set git-flow when initializing a repository.
-  * Automatically set git-hooks integration.
-  * Implement global hooks.
-  * Check remote configuration.
-  * Check hook tampering before doing anything in the repository, like removing hook permissions, see [discussion](https://stackoverflow.com/questions/35997624/how-to-disable-git-hooks-for-security-reason#35998287).
-  * That can disable/mitigate hooks by changing permission and ownership on `~/.git/hooks`.