#!/usr/bin/env bash
## Create and sign a new tag.
## Source: git-extra-commands

#
# Create a tag and sign it.

exec git tag -s -m "$1" "$1" "$2"
