git 添加更新子模块

添加submodule到仓库

下载父仓库:

git clone git@gitlab.abc.com:cloud-security-platform/console-after.git

父仓库中添加submodule,分支可以指定对应的submodule分支,以master为例:
进入submodule所在目录:

 cd src/main/webapp/

下载submodule对应的master分支:

git submodule add -b master git@gitlab.abc.com:cs70/console-before.git console
或者(默认就是master)
git submodule add  git@gitlab.abc.com:cs70/console-before.git console

将submodule提交到本地库:

git commit -am "add submodule console"

将subodule推送到线上库:

 git push origin master

命令执行完成会发现生成了一个.gitmodules文件,可以修改该文件中代码的地址

更新submodule

更新操作跟普通的项目操作一样:
进入submodule所在目录(/src/main/webapp/console)
git pull从远程获取最新版本merge到本地
git branch -a 查看所有submodule版本
git branch -vv 查看当前head对应的远程分支
git checkout 对应分支版本
git commit -am “更改功能点说明”
git push origin “远程分支” [以master分支为例:git push origin master]

问题记录

由于第一次操作,出现了以下错误提示:

A git directory for 'console' is found locally with remote(s):
  origin        git@gitlab.abc.com:cs70/console-before.git
If you want to reuse this local git directory instead of cloning again from
  git@gitlab.abc.com:cs70/console-before.git
use the '--force' option. If the local git directory is not the correct repo
or you are unsure what this means choose another name with the '--name' option.

解决方法:

git submodule add --name Common git@gitlab.abc.com:cs70/console-before.git console
Git submodule 是 Git 的一个功能,可以将一个 Git 仓库作为另一个 Git 仓库的目录进行管理。通过使用模块,我们可以在一个 Git 仓库中使用另一个 Git 仓库的组件。 使用 git submodule 的步骤如下: 1. 在父项目中添加模块:使用命令 `git submodule add <模块仓库地址> <模块存放路径>` 将模块添加到父项目中。 2. 克隆模块:使用命令 `git submodule init` 初始化模块,然后使用命令 `git submodule update` 克隆模块的内容。 3. 切换到模块分支:通过 `cd <模块路径>` 进入模块目录,然后使用 `git checkout <分支名>` 切换到模块所在的特定分支。 4. 更新模块:在父项目中使用命令 `git submodule update --remote` 可以更新模块为最新的提交。 5. 提交模块修改:在父项目中修改了模块后,需要切换到模块目录,进行提交和推送操作。 使用模块的好处是可以将项目作为独立的仓库进行开发和维护,同时在父项目中方便地使用和更新模块。使用模块可以实现项目的模块化和复用,提高代码的可维护性和可重用性。 需要注意的是,使用模块时需要注意模块的分支和版本控制,因为模块可能会更新,需要及时更新父项目中的模块。同时,在多人协作开发中,也需要注意在提交父项目时确保模块的修改也已经提交。 总之,使用 Git submodule 可以方便地在父项目中使用模块的组件,提高代码管理的灵活性和可重用性。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值