添加链接
link管理
链接快照平台
  • 输入网页链接,自动生成快照
  • 标签化管理网页链接
相关文章推荐
小眼睛的大象  ·  WordPress Plugin File ...·  1 周前    · 
英俊的豆芽  ·  pr2020中文下载-adobe ...·  4 月前    · 
单身的人字拖  ·  PHP Mailer not ...·  11 月前    · 
温暖的电梯  ·  Android OpenGL ES 入门 ...·  1 年前    · 

Platform notice: Server and Data Center only. This article only applies to Atlassian products on the Server and Data Center platforms .

Support for Server* products ended on February 15th 2024 . If you are running a Server product, you can visit the Atlassian Server end of support announcement to review your migration options.

*Except Fisheye and Crucible

Problem

Cloning a repository from a mirror that contains submodules results in one of the following errors:
Command : git clone --recurse-submodules <Mirror URL>/git/Repository.git

fatal: clone of '<Upstream URL for Submodule>' into submodule path '<.../Repository/submodule>' failed
Failed to clone '<submodule name>'. Retry scheduled
Cloning into '<LocalPath.../Repository/submodule>'...
fatal: unable to access '<Upstream URL>': Could not resolve host: <HOST-NAME>
fatal: clone of '<Upstream URL for Submodule>' into submodule path '<.../Repository/submodule>' failed
Failed to clone '<submoodule name>' a second time, aborting
Submodule '<submodule name>' (<Upstream URL for Submodule>) registered for path '<submodule name>'
Cloning into ''<LocalPath.../Repository/submodule>'...
fatal: early EOF
fatal: The remote end hung up unexpectedly
fatal: index-pack failed
error: RPC failed; curl 18 transfer closed with outstanding read data remaining
fatal: clone of '<Upstream URL for Submodule>' into submodule path '<LocalPath.../Repository/submodule>' failed
Failed to clone '<submodule name>'. Retry scheduled 


Cause

This can happen when users who clone from the mirror don't have access to the upstream primary server.
When creating a Submodule, Git creates a .gitmodules file. By default, the configuration uses the upstream/primary server URL.

Example of default .gitmodules file with fully qualified URL:

Change Submodule URL from fully qualified URL/absolute to a relative path.

In order for this to work correctly for both HTTPS and SSH you need to meet the following criteria :

  1. All Repositories involved (SuperProject/Parent Repo and Submodule Repos) need to be on the server you are cloning from. This is true whether it is from a mirror or the upstream primary server.
  2. If cloning via SSH, you need to add SSH keys to all repositories involved.

You don't need to clone the submodules locally as separate repositories.
Once all the repositories are on the server (Upstream and Mirror) and the correct access has been provided,  you can
Change URLs to Relative Paths