I'm trying to push my project to github repository. On my new project I did following commands:
git init
git commit -m "first commit"
git remote add origin https://github.com/myaccount/MyRepoName.git
But when I'm trying to push my commit like this:
git push -u origin master
It gives me following error information:
fatal: Full write to remote helper failed: Invalid argument
Error reading command stream
I found nothing about this in google. Please, help me fix this issue.