1. 程式人生 > >git push顯示 returning Error Code 403 fatal: HTTP request failed

git push顯示 returning Error Code 403 fatal: HTTP request failed

編輯.git/config

  1 [core]
  2         repositoryformatversion = 0
  3         filemode = true
  4         bare = false
  5         logallrefupdates = true
  6 [remote "origin"]
  7         url = https://github.com/yourusername/repository_name.git
  8         url = ssh://git@github.com/yourusername/repository_name.git
  9
fetch = +refs/heads/*:refs/remotes/origin/* 10 [branch "master"] 11 remote = origin 12 merge = refs/heads/master 13 [http] 14 [https]

第7行是原來的,把它修改成第8行,使用ssh傳輸。同時要確保現在使用的git的email在github上已驗證即可