-
Notifications
You must be signed in to change notification settings - Fork 2
/
README
61 lines (37 loc) · 1.87 KB
/
README
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
56
57
58
59
60
61
git-hooks - Generic Git hooks
http://benediktmeurer.de/git-hooks
Git Hooks provides a simple mechanism to manage hooks for several Git
repositories in a unified and simple way. It allows you to install hook
scripts in a central location and use them for your Git repositories.
Installation
You need CMake and GCC in order to build and install git-hooks. You will
also need to have Git and Perl installed for the hooks to work properly.
To build git-hooks run
$ cmake /path/to/git-hooks
$ make
in a new directory (preferably, tho you may also run it from the source
directory). Then, use
$ make install
to install git-hooks. This will install git-hooks to /usr/local. You can
use ccmake to change the installation prefix. Below, we will assume that
you installed git-hooks to /usr/local.
Repository setup
To setup a repository using git-hooks, just use the repository template
that ships with git-hooks.
$ mkdir myrepo.git
$ cd myrepo.git
$ git --bare init --template=/usr/local/share/git-hooks/template ...
This will setup the new repository myrepo.git with git-hooks. Check the
sample config file that will be created for myrepo.git.
Repository migration
To migrate an existing repository to use git-hooks, you should first backup
your existing hook scripts. Then replace the hooks with the ones from
/usr/local/share/git-hooks/template/hooks. Afterwards, you should migrate
your previous hook scripts to global hook scripts used by git-hooks.
Configuration
The git-hooks package includes several useful hooks, which can be configured
to your needs using git config settings in your repository (or even global
settings from /etc/gitconfig). The /usr/local/share/git-hooks/template/config
file provides a sample configuration file.
Please see the hook scripts in /usr/local/share/git-hooks/*.d/ for the
various supported config settings.