我有一个由我的github帐户管理的Github组织。我所有的存储库都运行良好。当我创建一个新的存储库时,我将其设置为私有,并将我的Github帐户添加为Collaborator。突然间,所有计算机上的所有存储库都停止了工作"。每次我想拉动或推送存储库时都会出现此错误:
enter code hereremote: Repository not found.
fatal: repository 'https://github.com/Organisation/Repository.git/' not found
我正在使用的所有存储库和客户端都是一样的。即使是新创建的私人回购。
创建新回购时的工作流程是
git init
git remote add origin https://CopiedLinkToPrivateRepo
git add .
git commit -m 'my message'
git push origin master
这个工作流程已经工作多年了。直到几个星期前它突然停止工作。
答案 0 :(得分:3)
感谢CodeWizard。
对于所有搜索人员,似乎有两种解决方案。
git remote set-url https://USERNAME@github.com/usernameOrOrganisation/repository.git
。 Github网站有时似乎没有提供其中包含用户名的链接。