terraformDummyRepo2/examples/pre-receive.sh
2022-08-30 21:02:06 +02:00

9 lines
No EOL
201 B
Bash

#!/bin/bash
while read oldrev newrev refname
do
branch=$(git rev-parse --symbolic --abbrev-ref $refname)
if [ "master" = "$branch" ]; then
echo "wrong branch"
exit 1
fi
done