執行報錯:
[root@localhost learngit_2]# git remote add origin https://github.com/shengleqi/gitskills.git [root@localhost learngit_2]# git push -u origin master error: The requested URL returned error: 403 Forbidden while accessing https://github.com/shengleqi/gitskills.git/info/refs fatal: HTTP request failed
修復方式:
可以看到上面紅色加粗的文字(The requested URL returned error: 401 Authorization Required),是權限問題導致的,可以修改.git/config文件追加用戶名和密碼:
1)編輯.git/config文件
2)在[remote “origin”]下找到找到url變量
3)修改url = https://github.com/user/test.git,修改為url = ssh://git@github.com/user/test.git,修改完了保存
4)通過git push origin master進行同步,已經可以成功了
修改如下:
[root@localhost learngit_2]# cat .git/config [core] repositoryformatversion = 0 filemode = true bare = false logallrefupdates = true [remote "origin"] url = ssh://git@github.com/shengleqi/gitskills.git fetch = +refs/heads/*:refs/remotes/origin/* [branch "master"] remote = origin merge = refs/heads/master
執行成功:
[root@localhost learngit_2]# git push -u origin master The authenticity of host 'github.com (192.30.255.112)' can't be established. RSA key fingerprint is 16:27:ac:a5:76:28:2d:36:63:1b:56:4d:eb:df:a6:48. Are you sure you want to continue connecting (yes/no)? yes Warning: Permanently added 'github.com,192.30.255.112' (RSA) to the list of known hosts. Counting objects: 26, done. Compressing objects: 100% (19/19), done. Writing objects: 100% (26/26), 2.08 KiB, done. Total 26 (delta 6), reused 0 (delta 0) remote: Resolving deltas: 100% (6/6), done. To ssh://git@github.com/shengleqi/gitskills.git * [new branch] master -> master Branch master set up to track remote branch master from origin.