mirror of
https://github.com/git/git.git
synced 2024-11-01 14:57:52 +01:00
f98f8cbac0
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>
8 lines
160 B
Bash
Executable file
8 lines
160 B
Bash
Executable file
#!/bin/sh
|
|
#
|
|
# An example hook script that is called after a successful
|
|
# commit is made.
|
|
#
|
|
# To enable this hook, rename this file to "post-commit".
|
|
|
|
: Nothing
|