1.git初始化 git init
2.工作区提交到暂缓区 git add .
3.暂缓区提交到本地代码仓库 git commit -m "注释"
4.本地提交到远程 git push origin master
5.添加本地标签 git tag -a '0.1.0'
6移除本地标签 git tag -d '0.1.0'
7添加远程仓库地址git remote add origin 地址
8上送远程代码仓库 git push origin master
9上送标签 git push --tags
网友评论