go ge怎么安装gitlab私有包-亚博电竞手机版
go ge怎么安装gitlab私有包
本篇内容主要讲解“go ge怎么安装gitlab私有包”,感兴趣的朋友不妨来看看。本文介绍的方法操作简单快捷,实用性强。下面就让小编来带大家学习“go ge怎么安装gitlab私有包”吧!
获取gitlab的token
进入gitlab—>settings—>access tokens,然后创建一个personal access token,这里权限最好选择只读(read_repository)。
git配置添加access token
有了access token后,我们还需要在git中进行配置,这样才能go get下了私有仓库的包,需要把刚刚的token添加进git的请求头中,操作如下:
gitconfig--globalhttp.extraheader"private-token:your_private_token"
配置git将请求从ssh转换为http
gitconfig--globalurl."git@gitlab_url:groupname/projectname.git".insteadof"https://gitlab_url/groupname/projectname.git"`
上面是通过命令修改配置,也可以像这样,直接修改配置文件 ~/.gitconfig,在里面添加如下配置:
[url"git@{{gitlab_url}}:"]insteadof=https://{{gitlab_url}}/
注意:insteadof 中的参数是https,因为不管目标地址是http还是https,go get默认使用https方式访问,因此我们要强制将https转换成git协议
如果这样还拉不下来,就需要对go的一些环境变量进行配置
bash (liunx or macos)
#配置goproxy环境变量exportgoproxy=https://goproxy.io,direct#还可以设置不走proxy的私有仓库或组,多个用逗号相隔(可选)exportgoprivate=git.mycompany.com,github.com/my/private
powerbash (windows)
#配置goproxy环境变量$env:goproxy="https://goproxy.io,direct"#还可以设置不走proxy的私有仓库或组,多个用逗号相隔(可选)$env:goprivate="git.mycompany.com,github.com/my/private"
到此,相信大家对“go ge怎么安装gitlab私有包”有了更深的了解,不妨来实际操作一番吧!这里是亿速云网站,更多相关内容可以进入相关频道进行查询,关注亚博电竞手机版,继续学习!