GitHub 创建新存储库(消息“远程:未找到存储库”)

发布于 2025-01-19 11:51:07 字数 540 浏览 0 评论 0原文

当我想通过 git 命令从本地现有存储库简单地在 GitHub 上创建远程私有存储库时。

git remote add origin https://github.com/"UserName"/"NameRemoteRepository".git
git push -u origin main

我收到错误消息:

远程:未找到存储库。 致命:找不到存储库'https://github.com/"UserName"/"NameRemoteRepository".git/'。

我通过 SourceTree 检查了相同的内容,更改了 PAS 上的类型身份验证,清理了 Windows 凭据等,但结果是相同的(我记得它在 2021 年 9 月早些时候就有效了)。

更新: 在最后一个案例中,我遇到了问题 - 存储库是在 GitHub 上创建的(由 SourceTree),但我无法从本地(主/主或其他)将现有分支推送到它。请参阅更新解决方法

When I want to simply create the remote private repository on GitHub from my local existing repository by git commands.

git remote add origin https://github.com/"UserName"/"NameRemoteRepository".git
git push -u origin main

I received the error message:

remote: Repository not found.
fatal: repository 'https://github.com/"UserName"/"NameRemoteRepository".git/' not found.

I check the same by SourceTree, change the type authentication on PAS, clean the Windows credentials and so on but result was the same (and I remember it's works early at September 2021).

UPDATED:
In the last case I met with problem - the repository was created on GitHub (by SourceTree) but I can't push to it the existed branch from local (main/master or other). See updated workaround

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

树深时见影 2025-01-26 11:51:07

我找到了解决方案(2022 年 4 月)。
您必须通过 GitHub WEB 界面(“您的存储库”中的“新建”)或通过 GitHub CLI 工具<在 GitHub 上创建“NameRemoteRepository”存储库/a> 之前您将运行命令git push -u origin main

PS>
后来我在 GitHub 论坛 上发现了这一事实的提及,但是在 Git 或 SourceTree 文档中没有找到强有力的方向。

更新:
我发现主要问题是在 GitHub 上创建新分支(来自本地分支)。
我使用另一种解决方法来解决这个问题。您可以在计算机上安装 GitHub Desktop,它在 GitHub 上从本地创建新分支时没有此限制(创建后返回到首选工具)。

I found the solution (at April 2022).
You must create the "NameRemoteRepository" repository on GitHub by GitHub WEB interface ("New" from "Your repositories") or by GitHub CLI tool before you will run the command git push -u origin main

P.S>
Latter i found the mention of this fact on GitHub forum but doesn't found strong direction of that in Git or SourceTree documentation.

UPDATED:
I found that the main problem is the creation of new branch on GitHub (from local branch).
And I use the another Workaround for this problem. You can install on computer the GitHub Desktop, which haven't this limitation in creation on GitHub the new branch from local (and after creation return to the preferred tool).

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文