go get或go mod tidy报错 fatal: could not read Username for

go get git.xxxxx.net/CPC/protocol: module git.xxxxx.net/CPC/protocol: git ls-remote -q origin in /Users/admin/go/pkg/mod/cache/vcs/b23efdb68de4fde955075014c720200fc58c6052bbf3cd57ed65bf341c19c359: exit status 128:
fatal: could not read Username for ‘https://git.xxxxx.net’: 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

go get 下载依赖出错,但是项目是可以正常clone下来的,从上面报错信息可以看出是因为找不到git远程仓库的用户名信息,解决办法修改 ~/.gitconfig 让go使用ssh协议拉取代码
在 ~/.gitconfig 中添加以下信息

[url "ssh://[email protected]/"]
	insteadOf = https://git.xxxxxxxxxxxx.net/

把git.xxxxxxxxxxxx.net 替换为你真实的git仓库地址

具体请参考 https://golang.org/doc/faq#git_https

你可能感兴趣的:(Git,Golang,golang,git,ssh)