gitでのタグの作り方のメモです。
tagを新しく作る
$ git tag -a 1.0.0 -m 'v1.0.0'
remoteにpushする
$ git push origin 1.0.0
tagを表示する
$ git tag
tagをremoteから取得する
$ git fetch --tags
or
$ git pull --tags
tagを削除する
$ git tag -d 1.0.0
remoteにも反映させる。(タグ名に':'をつける)
$ git push origin :1.0.0
参考