我正在使用glidegolang项目的软件包管理。我无法使用来获取私有存储库glide get bezos.gitlab.com/gomock。
glide
glide get bezos.gitlab.com/gomock
即使我提供了正确的凭据,它也会询问用户名和密码,结果抛出错误。请提出任何想法。
它与glide任何其他程序包管理工具无关。您必须在git http.extraheader中设置create和gitlab访问令牌。
转到gitlab 设置- >访问令牌并创建新的访问令牌,请确保仅将其复制一次。
然后设置这些git的全局变量,现在你可以安装私有仓库使用glide,go get,godep,等。
go get
godep
git config –global http.extraheader“私人令牌:YOUR_ACCESS_TOKEN” git config –global url。“ git@bezos.gitlab.com:”。insteadOf“ https://bezos.gitlab.com/ ”
git config –global http.extraheader“私人令牌:YOUR_ACCESS_TOKEN”
git config –global url。“ git@bezos.gitlab.com:”。insteadOf“ https://bezos.gitlab.com/ ”