#!/bin/sh set -e cd $1 git init git config user.email "CI@example.com" git config user.name "CI" git checkout -b master echo "file1" > file1 echo "file2" > file2 echo "disruptive" > disruptive cat > .git/hooks/pre-commit <