go使用私有module
假如自建git,但又需要使用里面的库,就需要配置私有仓库可用。
如果没有配置git ssh key,可参照git解决总要输入密码的问题 自行配置。
然后,只需要执行:
// 私有库
go env -w GOPRIVATE=git.puresai.cn
// 配置 git.puresai.cn 库使用 [email protected] 拉取,主要后面的 : 不可以丢了
git config --global url."[email protected]:".insteadOf https://git.puresai.cn
这样就可以使用了,如果没配置git 的 ssh key,就不能使用git@git.puresai.cn,可以把url 换成https + 用户名密码的格式:
https://puresai:[email protected]
go使用私有module
https://blog.puresai.com/2021/10/30/375/