#!/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".

git update-server-info

# Sicherstellen dass Alle Leserechte haben
# zuerst Files
chmod -R a+r $HOME/git 
# dann Verzeichnisse
find $HOME/git -type d -exec chmod a+x {} \;
