1.git初始化 git init
2.工作區(qū)提交到暫緩區(qū) git add .
3.暫緩區(qū)提交到本地代碼倉(cāng)庫(kù) git commit -m "注釋"
4.本地提交到遠(yuǎn)程 git push origin master?
5.添加本地標(biāo)簽 git tag -a '0.1.0'
6移除本地標(biāo)簽 git tag -d '0.1.0'
7添加遠(yuǎn)程倉(cāng)庫(kù)地址git remote add origin 地址
8上送遠(yuǎn)程代碼倉(cāng)庫(kù) git push origin master
9上送標(biāo)簽 git push --tags