LoginSignup
11
10

More than 5 years have passed since last update.

tagの付け方

Posted at

タグの付け方

git tag v1.0

リモートへタグを反映させる

git push origin v1.0

反映してないタグを全て反映させる。

git push origin --tags

タグをpull

git pull origin --tags

タグを削除

git tag -d v1.0
11
10
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
11
10