如果没有什么别的问题的话,推荐使用SSH的方式.请参考:http://stackoverflow.com/questions/7438313/pushing-to-git-returning-error-code-403-fatal-http-request-failed Pushing to Git returning Error Code 403 fatal: HTTP request failed up vote241down votefavorite 119 I was able to…
来源:http://blog.csdn.net/happyteafriends/article/details/11554043 github push错误: git push error: The requested URL returned error: 403 Forbidden while accessing https://github.com/wangz/future.git/info/refs git version 1.7.1 OS:CENTOS 解决方案: vim .git/c…
1. 在开发机上生成自己的密钥 ssh-keygen -b 1024 -t rsa -b 指密钥对长度 -t 指加密方式 Enter file in which to save the key (/home/usrname/.ssh/id_dsa): 默认位置即可,方便简洁 然后 passphrase 输入一个登陆密码,不然别人有了私钥在一台设备上就随便提交了 不过有个缺陷就是会每次都输入密码,可以按照(4)的方式,使用ssh缓存 生成后,在自己的.ssh目录下会生成私钥和公钥 2. 在gi…