无法连接仓库:Command "git ls-remote -h https://gitee.com/zwt-123/test.git HEAD" returned status code 128: stdout: stderr: fatal: Authentication failed for 'https://gitee.com/zwt-123/test.git/'
时间: 2023-06-22 22:36:17 浏览: 242
这个问题可能是由于缺少身份验证信息导致的。请确保你已经正确设置了 Git 的用户名和电子邮件地址,以及在使用 Git 时提供了正确的访问令牌或密码。你可以在 Git 提示符下运行以下命令来检查和设置这些信息:
```
git config --global user.name "Your Name"
git config --global user.email "your.email@example.com"
```
如果你使用的是 HTTPS 协议来访问 Git 仓库,请确保你已经提供了正确的访问令牌或密码。你可以在 Git 提示符下运行以下命令来配置 Git 的凭据缓存:
```
git config --global credential.helper cache
```
这样可以在一定时间内缓存你的凭据信息,避免重复输入密码。如果你使用的是 SSH 协议来访问 Git 仓库,则需要确保你已经正确地设置了 SSH 密钥。
相关问题
无法连接仓库:Command "git ls-remote -h git@gitee.com:zwt-123/test.git HEAD" returned status code 128: stdout: stderr: Warning: Permanently added the ECDSA host key for IP address '212.64.63.190' to the list of known hosts. Permission denied (publickey). fatal: Could not read from remote repository. Please make sure you have the correct access rights and the repository exists.如何彻底解决
这个错误通常是由于 SSH 密钥认证失败导致的。以下是一些可能的解决方法:
1. 检查您的 SSH 密钥是否正确设置并添加到您的 Git 主机帐户中。
2. 检查您的 Git 主机帐户是否正确配置,并且您拥有正确的访问权限。
3. 确保您的 Git 主机已正确设置,并且您可以从您的计算机访问。
4. 如果您使用的是多个 SSH 密钥,请确保您正在使用正确的密钥进行身份验证。
5. 如果您使用的是 Windows 系统,请确保您的 SSH 密钥已正确添加到您的 Windows 用户帐户中。
如果您尝试了上述所有方法仍然无法解决问题,请考虑联系您的 Git 主机提供商以获取更多支持。
jenkins扫描多分支流水线宝座FATAL: Failed to recompute children of test-multi hudson.plugins.git.GitException: Command "git ls-remote --symref -- ssh://git@10.32.1.138:9922/hj/test-multi.git" returned status code 128: stdout: stderr: Host key verification failed. fatal: Could not read from remote repository.
这个错误一般是由于没有设置正确的 SSH 密钥或者是没有添加正确的 Host Key 导致的。你可以尝试以下步骤来解决这个问题:
1. 确认是否正确配置了 SSH 密钥,可以通过在终端中执行 `ssh -T git@10.32.1.138 -p 9922` 来测试是否可以连接到 Git 服务器。
2. 如果 SSH 密钥正确配置,那么可能是 Host Key 没有正确添加。你可以通过在终端中执行以下命令来添加 Host Key:
```
ssh-keyscan -p 9922 10.32.1.138 >> ~/.ssh/known_hosts
```
注意:这个命令会将 Host Key 添加到当前用户的 `~/.ssh/known_hosts` 文件中,如果你使用的是其他用户,需要将 `~/.ssh/known_hosts` 替换成相应用户的文件路径。
3. 如果以上步骤都无法解决问题,可能是 Git 服务器端的配置问题,需要联系 Git 服务器管理员进行排查。
阅读全文