#!/bin/sh

filename="$*"

test -z "$filename" && echo "filename required" 1>&2 && exit 1

touch "$filename" \
  && git add "$filename"
