https://github.com/git/git
Raw File
Tip revision: d5b41391a472dcf9486055fd5b8517f893e88daf authored by Taylor Blau on 06 October 2022, 00:24:38 UTC
Git 2.38.1
Tip revision: d5b4139
hooks--post-update.sample
#!/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
back to top