mirror of
https://github.com/git/git
synced 2024-10-28 19:25:47 +00:00
100e762a60
The hook templates were still using/referencing 'git-foo' instead of 'git foo.' This patch updates the sample hooks to use the modern conventions instead. Signed-off-by: Ben Walton <bwalton@artsci.utoronto.ca> Signed-off-by: Junio C Hamano <gitster@pobox.com>
8 lines
189 B
Bash
Executable file
8 lines
189 B
Bash
Executable file
#!/bin/sh
|
|
#
|
|
# An example hook script to prepare a packed repository for use over
|
|
# dumb transports.
|
|
#
|
|
# To enable this hook, rename this file to "post-update".
|
|
|
|
exec git update-server-info
|