git新建项目+标签
# 初始化
git init
# 添加文件
git add *
# 提交缓存
git commit -m 'first commit'
# 打标签
git tag 1.0.2
# 查看版本
git tag
# 第一次推送 远程仓库地址
git remote add origin https://github.com/你的仓库地址
# 推送文件
git push origin master
# 推送标签
git push origin --tags