0
我是新來的Git和Python,我試圖做:「混帳推起源大師」在德威
git push origin master using Dulwich
我克隆了一個遠程倉庫到本地回購「local_repo」,然後試圖做一些事情像:
porcelain.push(local_repo,'git://github.com/myusername/myrepo')
,並顯示錯誤:
"dulwich.errors.GitProtocolError: You can't push to git://github.com/myusername/myrepo Use https://github.com/myusername/myrepo.git"
當我使用:
porcelain.push(local_repo,'https://github.com/myusername/myrepo.git')
它顯示錯誤:
"dulwich.errors.GitProtocolError: unexpected http response 401"
請告訴我,我怎麼去了解它
您需要爲請求通過提供適當的身份驗證參數。 '401'代表無效認證。 –