git 在子模块中添加远程
.gitmodule 文件有子模块 url 和路径的列表,与此类似
[submodule ".vim/bundle/subRepo"]
path = .vim/bundle/subRepo
url = https://git.com/sub/repo
时,核心存储库的 .git/config 中有远程列表
[remote "origin"]
fetch = +refs/heads/*:refs/remotes/origin/*
url = [email protected]
,当
git submodule init
git submodule update
我获取子模块
。如何在子模块中添加一次遥控器列表? 不要每次都
git remote add remoteAlias git://...
在每个子模块中写入
the .gitmodule file have the list of submodule url and path, similar to this
[submodule ".vim/bundle/subRepo"]
path = .vim/bundle/subRepo
url = https://git.com/sub/repo
and in the .git/config of core repo have list of remotes
[remote "origin"]
fetch = +refs/heads/*:refs/remotes/origin/*
url = [email protected]
when
git submodule init
git submodule update
I get the submodules.
how add one time the list of remotes in a submodule ?
for not write everytime
git remote add remoteAlias git://...
in each submodule
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
或者
如果您已经克隆了。
or
if you already cloned.
我开始这个命令
https://github.com/juanpabloaj/git-remote-init
用于将遥控器保存在 .gitremotes 文件中
I begin this command
https://github.com/juanpabloaj/git-remote-init
for save the remotes in a .gitremotes file