git tag
git tag -l 'v1.0.1'
git tag -a v1.0.1 -m "内容:v1.0.1"
git push origin v1.0.1
删除本地: git tag -d v1.0.1
删除远程:git push origin :refs/tags/v1.0.1