golang项目引用GitHub私有仓库module
1.创建go module项目
module的名字假设为go-test
module项目创建成功后,将go.mod文件中的 module "go-test" 修改成
module "github.com/tonglin0325/go-test"
避免引用的时候go get报错,如下
go get github.com/tonglin0325/go-test@latest go: github.com/tonglin0325/go-test@latest (v1.0.0) requires github.com/tonglin0325/go-test@v1.0.0: parsing go.mod: module declares its path as: go-test but was required as: github.com/tonglin0325/go-test
在module中写好代码后上传到github上,并在github上给项目打上tag
如果GitHub repository设置成public的话,此时就可以使用如下命令引用这个module了
➜ /Users/lintong/coding/go/gin-template git:(main) ✗ $ go get github.com/tonglin0325/go-test@latest go: downloading github.com/tonglin0325/go-test v1.0.1 go: added github.com/tonglin0325/go-test v1.0.1
2.引用私有仓库的go module
如果电脑配置了github的私钥的话,可以直接使用go get命令来引用私有仓库的依赖
如果没有设置的话,则可以使用github的token来下载依赖
在github用户settings的Developer settings中创建一个token,token name假设为goland
指定go module的项目,并设置contents设置为read only
创建后获得token
重新设置github使用账号+token来拉取依赖
git config --global url."https://tonglin0325:your_token@github.com".insteadOf "https://github.com"
查看git配置是否添加成功
git config --global -l
如果添加错误可以unset之后再重新set
git config --global --unset xxx
指定拉取go-test依赖的时候使用私有仓库
go env -w GOPRIVATE=github.com/tonglin0325/go-test
查看go环境变量
go env
如果设置失败,可以删除后再添加
go env -u GOPRIVATE
最后使用go get命令引用依赖
go get github.com/tonglin0325/go-test@latest
本文只发表于博客园和tonglin0325的博客,作者:tonglin0325,转载请注明原文链接:https://www.cnblogs.com/tonglin0325/p/18486645