1

我正在尝试将我的项目推送到 github 存储库。在我的新项目中,我执行了以下命令:

git init
git commit -m "first commit"
git remote add origin https://github.com/myaccount/MyRepoName.git

但是当我试图像这样推送我的提交时:

git push -u origin master

它给了我以下错误信息:

fatal: Full write to remote helper failed: Invalid argument
Error reading command stream

我在谷歌上没有找到任何关于这个的信息。请帮我解决这个问题。

4

1 回答 1

1

此错误消息来自transport-helper.c,它调用git 远程助手之一。

有可能,在GitHub 不得不忍受最近的 DDoSgit@github.com:username/repo.git之后,并非所有 repos 都支持良好的 https 推送,因此建议切换传输协议(使用 ssh ,正如gnunu评论的那样)。

但是如果 https 再次适用于您的存储库,您应该检查几天。

于 2013-10-04T20:41:07.633 回答