Falha na instalação (git clone --recursive [email protected]:xxx.git)

Falha ao clonar o repositório e seus submódulos.

$git clone --recursive [email protected]:microsoft/Oscar.git
Cloning into 'Oscar'...
[email protected]: Permission denied (publickey).
fatal: Could not read from remote repository.

Please make sure you have the correct access rights
and the repository exists.

Além disso, para clonagem usando https “https://github.com/microsoft/Oscar.git”, os submódulos falham ao instalar dando o mesmo erro:

[email protected]: Permission denied (publickey).
fatal: Could not read from remote repository.

Responder

  1. Clone o repositório do Oscar usando: git clone https://github.com/microsoft/Oscar.git

  2. Atualize os submódulos Git com o conteúdo abaixo (.gitmodules)

[submodule "transformers"]
	path = transformers
	url = https://github.com/huggingface/transformers.git
	branch = 067923d3267325f525f4e46f357360c191ba562e
[submodule "coco_caption"]
	path = coco_caption
	url = https://github.com/LuoweiZhou/coco-caption.git
	branch = de6f385503ac9a4305a1dcdc39c02312f9fa13fc
  1. git init
  2. sincronização de submódulo git
  3. Execute git submodule update --init --recursive --progress dentro do repositório oscar para carregar os submódulos.

se perdeu este problema

usage: git submodule [--quiet] add [-b ] [-f|--force] [--name ] [--reference ] [--] []
or: git submodule [--quiet] status [--cached] [--recursive] [--] [...]
or: git submodule [--quiet] init [--] [...]
or: git submodule [--quiet] deinit [-f|--force] [--] ...
or: git submodule [--quiet] update [--init] [--remote] [-N|--no-fetch] [-f|--force] [--rebase] [--reference ] [--merge] [--recursive] [--] [...]
or: git submodule [--quiet] summary [--cached|--files] [--summary-limit ] [commit] [--] [...]
or: git submodule [--quiet] foreach [--recursive]
or: git submodule [--quiet] sync [--recursive] [--] [...]

Você deve atualizar a versão git, --progress é suportado na versão 2.13 ou mais recente

Referir

おすすめ

転載: blog.csdn.net/weixin_42455006/article/details/127204617