https://github.com/git/git
Raw File
Tip revision: 15999998fbda60552742275570947431b57108ae authored by Junio C Hamano on 27 December 2012, 23:57:20 UTC
Git 1.8.0.3
Tip revision: 1599999
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