1. 查看本地标签 git tag 2. 创建本地标签 git tag -a v1.1 -m "v1.1" 3. 删除本地标签 git tag -d v1.1 4. 上传本地标签 git push origin v1.1