如何直接从 Atom 编辑器初始化 GitHub 存储库?

How to initialize a GitHub repo directly from Atom editor?

我正在使用 Atom 文本编辑器,我想将它连接到 GitHub。当我尝试从 Atom 初始化并将回购发布到 GitHub 时,它会抛出错误 -

fatal: 'origin' does not appear to be a git repository
fatal: Could not read from remote repository.
Please make sure you have the correct access rights
and the repository exists.

在网上找不到任何好的东西。尝试使用 apm 和命令行重新安装 github 软件包,但出现错误:Failed to delete github: No package.json found at C:\Users\User\.atom\packages\github\package.json

系统 - Windows10,Atom - 最新版本。

感谢您的帮助!

切换到命令行,只是为了检查来源是什么:

cd /path/to/local/repository
git remote -v

when I try to init

单独初始化不会设置原点:需要手动添加:

cd /path/to/local/repository
git remote add origin https://url/remote/repository

知道了。您应该使用 GitHub 桌面应用程序发布一个 repo,它运行良好,然后 Atom 将运行。