blob: 506a06511caea846f62a9d46171eb25477607b97 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#!/bin/sh
# A sample hook that runs after receiving a pack on a remote
############################################################
# This hook is called after a pack was received on the remote, i.e. after a successful `git push` operation.
# It's useful on the server side only.
#
# There many more receive hooks which are documented in the official documentation: https://git-scm.com/docs/githooks.
#
# To enable this hook remove the `.sample` suffix from this file entirely.
# Update static files to support the 'dumb' git HTTP protocol.
exec git update-server-info
|