Git打标签
bash
1. yarn version # 输入新的版本号,比如0.1.1
2. git push --tags # 远程分支会创建新的标签 v0.1.1
3. git push # 提交新的commit
# 2,3步骤可以合并为
git push --follow-tags