#!/bin/sh

dir=${1-.}
cd $dir \
  && git init \
  && git add . \
  && git commit -m 'Initial commit'
