# 远程仓库
# git remote
# 查看远程库信息
$ git remote -v
# git remote add
$ git remote add origin git@code.aliyun.com:huxins/test.git
# git remote rm
$ git remote rm origin
# git push
$ git push -u origin master
$ git push -f origin master
# 推送新增标签
$ git push origin tagname
$ git push origin --tags
# 推送删除标签
$ git push origin :refs/tags/v0.9
# git clone
$ git clone git@code.aliyun.com:huxins/test.git