因此,我在另一臺機器上設置了回購設置。我已經提交併推送了文件,並且他們在github.com上查看的很好。現在,我在另一臺機器上運行了git init
,我試圖拉。請求的URL返回錯誤:403訪問github.com時禁止訪問
# git remote set-url origin [email protected]:me/someproj.git
fatal: No such remote 'origin'
# git remote add origin https://github.com/me/someproj.git
# git pull
error: The requested URL returned error: 403 Forbidden while accessing https://github.com/me/someproj.git/info/refs
fatal: HTTP request failed
# git remote -v
origin https://github.com/me/someproj.git (fetch)
origin https://github.com/me/someproj.git (push)
# git pull origin
error: The requested URL returned error: 403 Forbidden while accessing https://github.com/me/someproj.git/info/refs
fatal: HTTP request failed
請提供更多信息 - 您在該機器上使用哪個git版本?你設置了用戶名和密碼嗎?你是在防火牆後還是使用代理? –
git版本1.7.1,不,我不支持代理,我知道。我不確定我是否設置了用戶/密碼。 – User
所以這可能是你的問題,用'''git config --global user.name your_username'''設置它,併爲你的密碼做同樣的事情。 –