LoginSignup
5
5

More than 5 years have passed since last update.

なんだかんだぐぐってしまう git tag の必要最小限なコマンドおさらい

Posted at

タグ一覧を見る

git tag

タグを打つ

git tag v1.0

注釈付きタグを打つ

git tag -a v1.1 -m 'my version 1.1'

gitのtagをremoteにpushする

git push origin --tags

or 

git push origin :tagname

ひとまずこれだけあれば事足りますね。

5
5
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
5
5