git中标签tag的作用可以区分一些小版本
git tag 可以查看所有的tag
git tag 标签名 创建一个轻量标签
git tag -a 标签名 -m 注释 可以创建一个注释附注标签
push的时候需要把标签推给远程,否则远程仓库感受不到
git push origin 0.4.4