A lightweight alternative to Simon Boison's example:
branch="$(git rev-parse --abbrev-ref HEAD)"
if [ $branch = development ]; then
echo "development-script"
elif [ $branch = staging ]; then
echo "staging-script"
elif [ $branch = production ]; then
echo "production-script"
fi