php小編蘋果在使用Git和Go語言開發專案時,遇到了一個問題:git ls-remote指令能夠成功取得遠端倉庫的信息,但是使用go get指令卻無法成功下載依賴的套件。這個問題困擾了小編很長一段時間,經過不斷的嘗試和調試,最終找到了解決方案。在本文中,將詳細介紹這個問題的原因以及解決方法,希望能對遇到相同問題的開發者有所幫助。
git ls-remote 指令對儲存庫成功,如下所示。
git ls-remote https://internal.net/dir1/dir2/dir3/repo warning: redirecting to https://internal.net/dir1/dir2/dir3/repo.git/ xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx head yyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyy refs/heads/master
但是,當使用 go get 時,cmd 會失敗並找不到儲存庫。錯誤輸出嘗試在儲存庫結構上方的 1 個目錄中尋找 .git。
go get internal.net/dir1/dir2/dir3/repo@master go: internal.net/dir1/dir2/dir3/repo@master: invalid version: git ls-remote -q origin in /Users/{{UserId}}/go/pkg/mod/cache/vcs/xyz...: exit status 128: remote: The project you were looking for could not be found or you don't have permission to view it. fatal: repository 'https://internal.net/dir1/dir2.git/' not found
我的私有化是
goprivate=internal.net
為了讓 go get 成功,我在這裡缺少什麼?
在私有模組路徑中加入vcs後綴以標記儲存庫根前綴:
go get internal.net/dir1/dir2/dir3/repo.git@master
請參閱直接存取私有模組:
可能仍然需要內部 http 伺服器來將模組路徑解析為儲存庫 url 。例如,當go 指令下載模組corp.example.com/mod
時,它會向 https://corp.example.com/mod?go-get=1
傳送get請求,並會尋找儲存庫回應中的url。為了避免此要求,請確保每個私有模組路徑都有一個 vcs 後綴(如 .git
),標記儲存庫根前綴。例如,當go 指令下載模組corp.example.com/repo.git/mod
時,它將複製位於 https://corp.example.com/repo.git
或ssh://corp.example 的git 儲存庫.com/repo.git
,無需發出額外請求。
請注意,vcs 後綴是模組路徑的一部分,因此應將其包含在所有使用模組路徑的地方。包括:
module
指令
module internal.net/dir1/dir2/dir3/repo.git
require
指令
require internal.net/dir1/dir2/dir3/repo.git v0.0.1
進口報關
import "internal.net/dir1/dir2/dir3/repo.git/pkg/util"
還有更多。
以上是git ls-remote 成功而 go get 失敗的詳細內容。更多資訊請關注PHP中文網其他相關文章!