赞
踩
git init
touch README.md
git commit -m "说明"
# 关联远程仓库(在Gitee新建仓库后跳转到的页面会给出刚创建的远程仓库地址 也就是clone地址)
git remote add origin https://gitee.com/xxx/xxx
# 提交到远程仓库 使用 -u 下次提交就可以直接使用git push
git push -u origin "master"
# 地址输入子仓库 clone 地址
git submodule add https://gitee.com/xxx/xxx
git status
git add .
git commit -m "增加子仓库"
git push
官网解释(大概意思就是使用-u时的本地分支与远程分支建立联系,下次使用要指定分支的命令时可以不用再指定分支)
-u
--set-upstream
For every branch that is up to date or successfully pushed, add upstream (tracking) reference, used by argument-less git-pull and other commands.
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。