github 提交报403 forbidden的错误解决
問(wèn)題描述:
$ git push
error: The requested URL returned error: 403 Forbidden while accessing
解決方案:
這是權(quán)限問(wèn)題,可以修改.git/config文件追加用戶名和密碼
詳細(xì):
From:http://stackoverflow.com/questions/7438313/pushing-to-git-returning-error-code-403-fatal-http-request-failed
To definitely be able to login using?https?protocol, you should first set your?authentication credential?to the git?Remote URI:
git remote set-url origin https://yourusername@github.com/user/repo.git
Then you'll be asked for a password when trying to?git push.
In fact, this is on the http authentication format. You could set a password too:
https://youruser:password@github.com/user/repo.git?
You should be aware that if you do this, your github password will be stored in plaintext in your .git directory, which is obviously undesirable.
轉(zhuǎn)載于:https://www.cnblogs.com/ytjjyy/archive/2012/04/10/2440937.html
總結(jié)
以上是生活随笔為你收集整理的github 提交报403 forbidden的错误解决的全部?jī)?nèi)容,希望文章能夠幫你解決所遇到的問(wèn)題。