嘗試使用go mod tidy 下載私有GitHub 儲存庫時,使用者可能會遇到類似的錯誤訊息至:
not found: github.com/me/[email protected]: invalid version: git ls-remote -q origin in /tmp/gopath/pkg/mod/cache/vcs/ea2baff0eaed39430ee011ad9a011101f13b668d5fcbd9dffdfa1e0a45422b40: exit status 128: fatal: could not read Username for 'https://github.com': terminal prompts disabled Confirm the import path was entered correctly. If this is a private repository, see https://golang.org/doc/faq#git_https for additional information.
此問題的出現是由於設定檔中缺少正確的憑證。要解決此問題:
修改~/.gitconfig:
替換:
[url "ssh://[email protected]/"] insteadOf = https://github.com/
替換為:
[url "https://{{username}}:{{access_token}}@github.com"] insteadOf = https://github.com
其中{username} 是您的GitHub 使用者名,{access_token} 是您的個人存取權杖。
建立~/.netrc 檔案:
確保~/.netrc 檔案包含以下內容:
machine github.com login {{username}} password {{access_token}}
設定GOPRIGOVATE :
驗證您的私人儲存庫的網域是否在GOPRIVATE 環境變數中指定,例如:
export GOPRIVATE=github.com/your_domain
依照這些步驟應該可以讓go mod tidy 成功下載私有GitHub儲存庫。
以上是如何修復下載私有 GitHub 儲存庫時「go mod tidy」失敗?的詳細內容。更多資訊請關注PHP中文網其他相關文章!