Warning: file_get_contents(/data/phpspider/zhask/data//catemap/9/git/24.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181

Warning: file_get_contents(/data/phpspider/zhask/data//catemap/2/github/3.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Github远程:未找到存储库。致命:存储库';https://github.com/org/repo.git/' 在Pycharm中找不到_Git_Github_Pycharm - Fatal编程技术网

Github远程:未找到存储库。致命:存储库';https://github.com/org/repo.git/' 在Pycharm中找不到

Github远程:未找到存储库。致命:存储库';https://github.com/org/repo.git/' 在Pycharm中找不到,git,github,pycharm,Git,Github,Pycharm,我试图通过Pycharm IDE在Github中进行私人回购,但总是失败。我收到以下错误: remote: Repository not found. fatal: repository 'https://github.com/org/repo.git' not found 我不明白,如果我点击https链接,它会直接进入我的回购协议。我还调用了git remote-v,列表中是repo 为什么这不起作用 谢谢尝试将您的网络切换到其他提供商,并试一试 或者,您可以尝试运行以下命令: ssh -

我试图通过Pycharm IDE在Github中进行私人回购,但总是失败。我收到以下错误:

remote: Repository not found.
fatal: repository 'https://github.com/org/repo.git' not found
我不明白,如果我点击https链接,它会直接进入我的回购协议。我还调用了
git remote-v
,列表中是repo

为什么这不起作用


谢谢

尝试将您的网络切换到其他提供商,并试一试

或者,您可以尝试运行以下命令:

ssh -T git@github.com

我认为私有存储库需要身份验证,对吗?如果是,git push是否要求输入用户名和密码?如果没有,您可能已经指定了凭证帮助器,它可以通过
git config credential.helper
打印。您可能最近更改了密码,但帮助器中存储的密码尚未更新,因此旧密码将自动使用。感谢您查看。当我尝试git push时,它会询问我的密码,似乎就在那里。我现在面临的问题发布在这里: