Pushing to Git returning Error Code 403 fatal: HTTP request failed

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:

  1. edit .git/config file under your repo directory
  2. find url=entry under section [remote "origin"]
  3. change it from url=https://[email protected]/derekerdmann/lunch_call.git tourl=ssh://[email protected]/derekerdmann/lunch_call.git. that is, change all the texts before @symbol to ssh://git
  4. Save config file and quit. now you could use git push origin master to sync your repo on GitHub
發佈了91 篇原創文章 · 獲贊 13 · 訪問量 45萬+
發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章