add-tag.sh 103 B

12345
  1. # Add tag to repo of new release
  2. # Example: add-tag.sh v1.62
  3. git tag -a $1 -m "$1"
  4. git push origin $1