Mac 克隆git项目 git clone gitee@git@xxx/xxx.git 错误:fatal: Could not read from remote repositor.

git 克隆项目出错

使用 mac 克隆公司项目出现问题;使用下载包以后打开项目,在终端执行 go mod tidy 出现报错
Mac 克隆git项目 git clone gitee@git@xxx/xxx.git 错误:fatal: Could not read from remote repositor._第1张图片

Mac 克隆git项目 git clone gitee@git@xxx/xxx.git 错误:fatal: Could not read from remote repositor._第2张图片

解决办法:

创建密钥,比如我这里需要配置一个 gitee 和 github 的

使用自己的邮箱生成密钥,比如我这里创建了两个密钥,一个是gitee ,另一个是 github。默认生成的是id_rsaid_rsa.pub

cd ~/.ssh
ssh-keygen -t rsa -C "[email protected]"

在这里插入图片描述

复制密钥到本地

复制id_rsa_github.pubid_rsa_gitee.pub 到本地中

pbcopy < ~/.ssh/id_rsa_github.pub
pbcopy < ~/.ssh/id_rsa_gitee.pub

创建一个 config 文件

使用下面命令,进入.ssh 目录中,然后创建一个config 文件

cd ~/.ssh # 如果当前目录是.ssh 中忽略 直接执行下一步
touch config

通过ls 查看当前目录,创建出了 config 文件
在这里插入图片描述

复制下面内容:
这里需要注意一下格式,Host 顶格,HostName 、 User 、IdentityFile 需要空两格

// Github的配置
Host github // 网站的别名,自己取
  HostName github.com // 托管网站的域名
  User xx  // 托管网站上的用户名
  IdentityFile ~/.ssh/id_rsa_github // 使用的密钥文件

// Gitee的配置
Host gitee // 网站的别名,自己取
  HostName gitee.com // 托管网站的域名
  User xxx // 托管网站上的用户名
  IdentityFile ~/.ssh/id_rsa_gitee // 使用的密钥文件

配置ssh公钥(建议这样操作)

在 gitee 中配置一个本地的ssh密钥上去,查看cat ~/.ssh/id_rsa_gitee.pub 将公钥复制上去,这个公钥更具你自己的名称去查看,默认生成的是id_rsaid_rsa.pub

Mac 克隆git项目 git clone gitee@git@xxx/xxx.git 错误:fatal: Could not read from remote repositor._第3张图片

配置完成以后尝试拉去 gitee 中的项目

最后执行下面命令,可以成功拉取到gitee 上的项目

git clone [email protected]:仓库名称.git

Mac 克隆git项目 git clone gitee@git@xxx/xxx.git 错误:fatal: Could not read from remote repositor._第4张图片

你可能感兴趣的:(踩坑日志,macos,git,gitee,golang)