= Git Hook Manager Paul Ollivier contact@paulollivier.fr

This project is an attempt to provide a way to easily share https://git-scm.com/book/en/v2/Customizing-Git-Git-Hooks[git hooks].

In many teams, we rely on a full suite of tooling, and the need to share code conventions and quality standards.

This tool tries to unify git hook management via the well-known shared repository dotfiles mechanisms.

[WARN]

This tool is still in its prototyping phase, and will most likely hurt children, attempt to summon inter-plane beings and damage your git repository

You have been warned.

== Installation

Grab yourself a copy from https://github.com/paulollivier/git-hooks/releases/latest[the latest release page], chmod +x it, and put it in one of the directories in your $PATH. May I recommend ~/.local/bin?

Or, if you have cargo: cargo install git-hooks-manager. In this case, the binary will be found in ~/.cargo/bin.

== Usage

[source]

$ git-hooks --help git-hooks Paul Ollivier contact@paulollivier.fr A git hooks manager

USAGE: git-hooks [SUBCOMMAND]

FLAGS: -h, --help Prints help information -V, --version Prints version information

SUBCOMMANDS: help Prints this message or the help of the given subcommand(s) init Install the git hooks in .git/hooks

run Runs the configured hooks for a given event

If you are starting a new project, or at least trying git-hooks on a new project, you should run git-hooks init. This will setup the project to run git-hooks on git events.

If you want to run a hook collection manually, you can call git-hooks run <event>:

[source,shell]

git-hooks-run Runs the configured hooks for a given event

USAGE: git-hooks run

FLAGS: -h, --help Prints help information -V, --version Prints version information

ARGS: Runs the hook for the given event, eg. "pre-commit", "post-commit"… [possible values: apply-patch- msg, commit-msg, post-commit, post-update, pre-apply-patch, pre-commit, pre-merge-commit, pre-push, pre-rebase, pre-receive, prepare-commit-msg, update]


=== Using & writing hooks

This is covered in link:hooks.adoc[it's own page].

== Design doc

I am convinced Rust is the language to go regarding system tooling, for its performance and error handling design.

The solution has 3 parts:

=== The .hooks.yml file

This file is expected to be found at the root of the git repository. It contains definitions to be read by the main binary.

.Example file for a rust project

[source,yaml]

repos: - https://github.com/paulollivier/rust-hooks hooks:

- name: cargofmt

=== A hook definitions repository

This is a simple git repository, with a hooks.yml at its root.

[WARN]

Not to be confused by the .hooks.yml!

The dotted version is to use the git hook manager for the current repo, the non-dotted version is for hooks definitions!

.Sample file containing hook definition

[source,yaml]

hooks: - name: rustfmt onevent: - pre-commit onfile_regex: - "*.rs" action: "rustfmt {files}"

setupscript: rustfmtsetup.sh

.Sample repository structure

[source]

. |-- hooks.yml

`-- rustfmt_setup.sh

=== The git-hooks binary

==== Roles