当前位置:   article > 正文

Git创建子仓库_git子仓库

git子仓库

流程

  1. 在Gitee创建一个新仓库
  2. 初始化本地仓库
git init
  • 1
  1. 创建README.md并提交,保证仓库不是空仓库
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"
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  1. 进入父仓库目录,输入以下命令
# 地址输入子仓库 clone 地址
git submodule add https://gitee.com/xxx/xxx
git status
git add .
git commit -m "增加子仓库"
git push
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6

git 命令 -u 含义

官网解释(大概意思就是使用-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.

  • 1
  • 2
  • 3
  • 4
  • 5
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/繁依Fanyi0/article/detail/617613
推荐阅读
相关标签
  

闽ICP备14008679号