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 /templates/hooks--update.sample | |
| parent | pre-rebase hook update (diff) | |
| download | git-f98f8cbac01e0d5dbb30660d7ea70af6a1439dfd.tar.gz git-f98f8cbac01e0d5dbb30660d7ea70af6a1439dfd.zip | |
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 '')
| -rwxr-xr-x[-rw-r--r--] | templates/hooks--update.sample (renamed from templates/hooks--update) | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/templates/hooks--update b/templates/hooks--update.sample index 4b69268fd0..93c605594f 100644..100755 --- a/templates/hooks--update +++ b/templates/hooks--update.sample @@ -3,7 +3,7 @@ # An example hook script to blocks unannotated tags from entering. # Called by git-receive-pack with arguments: refname sha1-old sha1-new # -# To enable this hook, make this file executable by "chmod +x update". +# To enable this hook, rename this file to "update". # # Config # ------ |
