#!/bin/bash

if [ -z "$1" ]
then
    echo "
    Script usage example: ./tagadd v1.0.0-alpha
    "
else
    git tag -a "$1"
    git push origin --tags
fi