diff options
author | Jan Holesovsky <kendy@collabora.com> | 2015-09-08 14:51:43 +0200 |
---|---|---|
committer | Jan Holesovsky <kendy@collabora.com> | 2015-09-08 14:51:43 +0200 |
commit | 63833851913c2fdb009e49df933dfef7b051013d (patch) | |
tree | 85c54df43b59a620dcc99135e6692f59c8f5d6af /.git-hooks/README | |
parent | 7ab770081ca955ae0da5d6c98f4badefd1f8f064 (diff) |
git-hooks: Copy them from the 'core' repo here too.
It's increasingly useful to be able to edit help without having 'core' around.
Diffstat (limited to '.git-hooks/README')
-rw-r--r-- | .git-hooks/README | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/.git-hooks/README b/.git-hooks/README new file mode 100644 index 0000000000..56ac97496e --- /dev/null +++ b/.git-hooks/README @@ -0,0 +1,15 @@ +Git hooks are executable scripts you can place in $GIT_DIR/hooks directory to trigger action at certain points. + +To install manually, run: + + cd .git/hooks && ln -s ../../.git-hooks/* ./ + +There are two groups of these hooks: client side and server side. + +The client-side hooks: +are for client operations such as committing and merging. + +The server-side hooks: +are for Git server operations such as receiving pushed commits. + +See Also [ http://git-scm.com/book/en/Customizing-Git-Git-Hooks ] |