#!/bin/sh # Commit a package without the prefix of 'package:' [ "$1" ] || { printf 'usage: %s \n' "${0##*/}"; exit 0 ;} git reset; git add .; git commit -m "${PWD##*/}: $*"