diff options
author | Junio C Hamano <gitster@pobox.com> | 2008-06-24 18:45:21 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2008-06-24 19:06:22 -0700 |
commit | f98f8cbac01e0d5dbb30660d7ea70af6a1439dfd (patch) | |
tree | 2f3a5b5f207ccc5432dd9f81959a002610ce5738 /Documentation/githooks.txt | |
parent | ba2d0f4f35beffbf715ca652d5b36df8c0ad5ceb (diff) | |
download | git-f98f8cbac01e0d5dbb30660d7ea70af6a1439dfd.tar.gz |
Ship sample hooks with .sample suffix
We used to mark hooks we ship as samples by making them unexecutable, but
some filesystems cannot tell what is executable and what is not.
This makes it much more explicit. The hooks are suffixed with .sample
(but now are made executable), so enabling it is still one step operation
(instead of "chmod +x $hook", you would do "mv $hook.sample $hook") but
now they won't get accidentally enabled on systems without executable bit.
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'Documentation/githooks.txt')
-rw-r--r-- | Documentation/githooks.txt | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Documentation/githooks.txt b/Documentation/githooks.txt index 4f06ae0ed4..262a4f1626 100644 --- a/Documentation/githooks.txt +++ b/Documentation/githooks.txt @@ -17,7 +17,8 @@ Hooks are little scripts you can place in `$GIT_DIR/hooks` directory to trigger action at certain points. When `git-init` is run, a handful example hooks are copied in the `hooks` directory of the new repository, but by default they are -all disabled. To enable a hook, make it executable with `chmod +x`. +all disabled. To enable a hook, rename it by removing its `.sample` +suffix. This document describes the currently defined hooks. |