You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
MartinMartimeo edited this page Jun 22, 2011
·
4 revisions
Datei: .git/hooks/pre-commit
#!/bin/sh
echo "- Checking if make is running"
make --silent --quiet
if [ $? -eq 0 ]
then
echo "[OK]"
exit 0
fi
echo "[!!!] Please verfiy your commit that it is makeable"
exit 3