「GitLab」tagでタグを操作する方法

2021年2月15日

1.タグの一覧
$ git tag

2.最新コミットをタグ「tag20210215」をつける
$ git tag -a tag20210215 -m 'comment 12323’

3.タグ「tag20210215」を作成、リモートリポジトリに反映
$ git tag tag20210215
$ push origin tag20210215

4.タグ「tag20210215」の情報を表示
$ git show tag20210215

5.タグ「tag20210215」を削除する
$ git tag -d tag20210215

6.タグ名を変更(tagAa -> tagBb)
$ git tag tagBb tagAa
$ git tag -d tagAa

GitLab

Posted by arkgame