1#!/bin/sh 2if [ -z "$1" -o -n "$2" ] ; then 3 echo >&2 'Usage: tag-release vX.Y.Z' 4 exit 1 5fi 6git tag -u ED70F82D $1 7