Skip to content

Commit

Permalink
Ship sample hooks with .sample suffix
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
Junio C Hamano committed Jun 25, 2008
1 parent ba2d0f4 commit f98f8cb
Show file tree
Hide file tree
Showing 12 changed files with 25 additions and 25 deletions.
3 changes: 2 additions & 1 deletion Documentation/githooks.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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.

Expand Down
2 changes: 1 addition & 1 deletion templates/hooks--applypatch-msg → templates/hooks--applypatch-msg.sample
100644 → 100755
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
# appropriate message if it wants to stop the commit. The hook is
# allowed to edit the commit message file.
#
# To enable this hook, make this file executable.
# To enable this hook, rename this file to "applypatch-msg".

. git-sh-setup
test -x "$GIT_DIR/hooks/commit-msg" &&
Expand Down
2 changes: 1 addition & 1 deletion templates/hooks--commit-msg → templates/hooks--commit-msg.sample
100644 → 100755
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
# status after issuing an appropriate message if it wants to stop the
# commit. The hook is allowed to edit the commit message file.
#
# To enable this hook, make this file executable.
# To enable this hook, rename this file to "commit-msg".

# Uncomment the below to add a Signed-off-by line to the message.
# Doing this in a hook is a bad idea in general, but the prepare-commit-msg
Expand Down
2 changes: 1 addition & 1 deletion templates/hooks--post-commit → templates/hooks--post-commit.sample
100644 → 100755
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@
# An example hook script that is called after a successful
# commit is made.
#
# To enable this hook, make this file executable.
# To enable this hook, rename this file to "post-commit".

: Nothing
16 changes: 0 additions & 16 deletions templates/hooks--post-receive

This file was deleted.

15 changes: 15 additions & 0 deletions templates/hooks--post-receive.sample
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
#!/bin/sh
#
# An example hook script for the "post-receive" event.
#
# The "post-receive" script is run after receive-pack has accepted a pack
# and the repository has been updated. It is passed arguments in through
# stdin in the form
# <oldrev> <newrev> <refname>
# For example:
# aa453216d1b3e49e7f6f98441fa56946ddcd6a20 68f7abf4e6f922807889f52bc043ecd31b79f814 refs/heads/master
#
# see contrib/hooks/ for an sample, or uncomment the next line and
# rename the file to "post-receive".

#. /usr/share/doc/git-core/contrib/hooks/post-receive-email
2 changes: 1 addition & 1 deletion templates/hooks--post-update → templates/hooks--post-update.sample
100644 → 100755
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@
# An example hook script to prepare a packed repository for use over
# dumb transports.
#
# To enable this hook, make this file executable by "chmod +x post-update".
# To enable this hook, rename this file to "post-update".

exec git-update-server-info
2 changes: 1 addition & 1 deletion templates/hooks--pre-applypatch → templates/hooks--pre-applypatch.sample
100644 → 100755
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
# The hook should exit with non-zero status after issuing an
# appropriate message if it wants to stop the commit.
#
# To enable this hook, make this file executable.
# To enable this hook, rename this file to "pre-applypatch".

. git-sh-setup
test -x "$GIT_DIR/hooks/pre-commit" &&
Expand Down
2 changes: 1 addition & 1 deletion templates/hooks--pre-commit → templates/hooks--pre-commit.sample
100644 → 100755
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
# exit with non-zero status after issuing an appropriate message if
# it wants to stop the commit.
#
# To enable this hook, make this file executable.
# To enable this hook, rename this file to "pre-commit".

# This is slightly modified from Andrew Morton's Perfect Patch.
# Lines you introduce should not have trailing whitespace.
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion templates/hooks--prepare-commit-msg → templates/hooks--prepare-commit-msg.sample
100644 → 100755
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
# message file. If the hook fails with a non-zero status,
# the commit is aborted.
#
# To enable this hook, make this file executable.
# To enable this hook, rename this file to "prepare-commit-msg".

# This hook includes three examples. The first comments out the
# "Conflicts:" part of a merge commit.
Expand Down
2 changes: 1 addition & 1 deletion templates/hooks--update → templates/hooks--update.sample
100644 → 100755
Original file line number Diff line number Diff line change
Expand Up @@ -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
# ------
Expand Down

0 comments on commit f98f8cb

Please sign in to comment.