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 1F3D0761D9B65F0B $1 7