我正在尝试将我的项目推送到 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
我在谷歌上没有找到任何关于这个的信息。请帮我解决这个问题。