哪个git在github上看不到外部存储库?

哪个git在github上看不到外部存储库?,git,github,Git,Github,我在github上创建了一个存储库。完成初始化和添加代码的所有步骤 执行命令 git remote add origin https://github.com/###/###.git 赛后 git push-u origin master 我看到了错误 fatal: repository https://github.com/###/###.git not found 有什么问题吗?由于URL区分大小写,请在浏览器中复制粘贴您设置为源的https URL字符串(如git remote-v

我在github上创建了一个存储库。完成初始化和添加代码的所有步骤

执行命令

 git remote add origin https://github.com/###/###.git
赛后

git push-u origin master
我看到了错误

fatal: repository https://github.com/###/###.git not found

有什么问题吗?

由于URL区分大小写,请在浏览器中复制粘贴您设置为源的https URL字符串(如
git remote-v
中所示),然后再次检查存储库是否存在


还要确保这不是一个私有存储库,或者您没有(通过git凭证助手)为其提供正确的身份验证。

-u
之前缺少一个空间。
git remote-v
显示了什么?(请编辑问题:在评论中,输出内容太难阅读。)