Git突然找不到Github存储库

时间:2016-11-11 16:24:58

标签: git github version-control terminal repository

我有一个由我的github帐户管理的Github组织。我所有的存储库都运行良好。当我创建一个新的存储库时,我将其设置为私有,并将我的Github帐户添加为Collaborator。突然间,所有计算机上的所有存储库都停止了工作"。每次我想拉动或推送存储库时都会出现此错误:

enter code hereremote: Repository not found. fatal: repository 'https://github.com/Organisation/Repository.git/' not found

我正在使用的所有存储库和客户端都是一样的。即使是新创建的私人回购。

创建新回购时的工作流程是

  1. 在Github网站上添加回购并将其设置为私有
  2. 将我的Github帐户添加为协作者
  3. 在终端上切换到我的repo文件夹。
  4. git init
  5. git remote add origin https://CopiedLinkToPrivateRepo
  6. git add .
  7. git commit -m 'my message'
  8. git push origin master
  9. Dang - 找不到存储库
  10. 这个工作流程已经工作多年了。直到几个星期前它突然停止工作。

1 个答案:

答案 0 :(得分:3)

感谢CodeWizard。

对于所有搜索人员,似乎有两种解决方案。

  1. 使用SSH密钥提供凭据。否则无法找到私有存储库。出于任何原因,没有ssh密钥,Git不再要求凭据。
  2. 最简单的方法是将用户名设置为远程网址。例如:git remote set-url https://USERNAME@github.com/usernameOrOrganisation/repository.git。 Github网站有时似乎没有提供其中包含用户名的链接。