I just got the same problem and just figured out what’s cause.
Github seems only supports ssh way to read&write the repo, although https way also displayed ‘Read&Write’.
So you need to change your repo config on your PC to ssh way:
- Edit
.git/configfile under your repo directory. - Find
url=entry under section[remote "origin"]. - Change it from:
url=https://MichaelDrogalis@github.com/derekerdmann/lunch_call.git
to:
url=ssh://git@github.com/derekerdmann/lunch_call.git
That is, change all the texts before@symbol tossh://git - Save
configfile and quit. now you could usegit push origin masterto sync your repo on GitHub.