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}}
GOPRIVATE 변수 설정:
개인 저장소의 도메인이 GOPRIVATE 환경 변수에 지정되어 있는지 확인하세요. 예:
export GOPRIVATE=github.com/your_domain
이 단계를 따르면 go mod tidy가 비공개 GitHub 저장소를 성공적으로 다운로드할 수 있게 됩니다.
위 내용은 개인 GitHub 리포지토리를 다운로드할 때 \'go mod tidy\' 오류를 수정하는 방법은 무엇입니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!