我想安裝gqrcode 項(xiàng)目并從該項(xiàng)目中獲取以下安裝說明:go get -u github.com/KangSpace/gqrcode執(zhí)行此操作時(shí),我首先得到:...fatal: could not read Username for 'https://github.com': terminal prompts disabled...執(zhí)行后git config --global --add url."git@github.com:".insteadOf "https://github.com/"我得到:git@github.com: Permission denied (publickey).fatal: Could not read from remote repository.Please make sure you have the correct access rightsand the repository exists.package github.com/KangSpace/gqrcode: exit status 1在 python 等其他語言中,我可以先克隆庫 ( git clone ....),然后再安裝它。我怎樣才能在 go 中執(zhí)行類似的操作?
1 回答

忽然笑
TA貢獻(xiàn)1806條經(jīng)驗(yàn) 獲得超5個(gè)贊
如果它仍然使用 HTTPS URL,盡管您有全局 git 配置url."git@github.com:".insteadOf
指令,您可能需要并嘗試使用PAT(個(gè)人訪問令牌)。
如本例所示,嘗試
git config --global url."https://${GITHUB_TOKEN}:x-oauth-basic@github.com/".insteadOf "https://github.com/"
(假設(shè)您有權(quán)訪問存儲(chǔ)庫)
但是,考慮到https://github.com/gqrcode本身是 404,可能需要先更新github.com/KangSpace/gqrcodegithub.com/gqrcode/xxx
中聲明的導(dǎo)入。
- 1 回答
- 0 關(guān)注
- 103 瀏覽
添加回答
舉報(bào)
0/150
提交
取消