#!/bin/sh
# Extract README.md from the main/master branch into the bare repo folder
git show HEAD:README.md > README.md 2>/dev/null || git show HEAD:readme.md > README.md 2>/dev/null
