github New Project + label

git tag New Project +

# 初始化
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

Reference Address:
https://git-scm.com/book/zh/v2/Git

Published 29 original articles · won praise 19 · views 1347

Guess you like

Origin blog.csdn.net/s1156605343/article/details/104117912