首页 > 解决方案 > 如何修复远程:找不到存储库错误?

问题描述

我正在尝试修复 git 错误:

远程:未找到存储库。

致命:找不到存储库“https://github.com/user_name/xxx.git/”

我已经尝试了以下修复,但没有一个可以为我解决问题

  1. 尝试将存储库 url 添加为: git remote set-url origin https://github.com/user_name/xxx.git/.
  2. 尝试使用以下命令全局设置我的帐户的默认身份:
git config --global user.email "user@example.com"
git config --global user.name "username"
git config --global user.password "password"
  1. 尝试使用我的存储库的新克隆。

但是,我仍然找不到任何运气来解决这个问题。任何帮助深表感谢。

谢谢,

标签: gitgithub

解决方案


推荐阅读