ホーム » git » git tag を追加

git tag を追加

タグを追加

[code]
git tag -a タグ名 -m "コメント"
[/code]

タグをリモートリポジトリに反映

[code]
git push origin –tag
[/code]

タグの一覧

[code]
git tag
[/code]