タグの付け方
git tag v1.0
リモートへタグを反映させる
git push origin v1.0
反映してないタグを全て反映させる。
git push origin --tags
タグをpull
git pull origin --tags
タグを削除
git tag -d v1.0
Go to list of users who liked
More than 5 years have passed since last update.
タグの付け方
git tag v1.0
リモートへタグを反映させる
git push origin v1.0
反映してないタグを全て反映させる。
git push origin --tags
タグをpull
git pull origin --tags
タグを削除
git tag -d v1.0
Register as a new user and use Qiita more conveniently
Go to list of users who liked