現在のリポジトリで生成済みのタグ一覧を表示
git tag -l
hogehogeタグの削除
git tag -d hogehoge
git tag hogehoge
originリモートに生成済みのhogehogeタグをPush
git push origin hogehoge
ローカルの全てのタグをリモートにPush
git push --tags
リモートの全てのタグをローカルにPull
git pull --tags
参考っていうかまるパクり:
メモ
【git】tagをremoteへpushなど