我正在尝试将私有 gitlab 存储库导入到我的 Go 代码中。我想使用用户访问令牌进行身份验证。有没有一种方法可以在导入命令中传递访问令牌。
我尝试在 import 命令中使用基本的 oauth2 url,但 import 命令只接受一个路径。
你可以运行命令
git config --global url.git@gitlab.com:.insteadOf https://gitlab.com/
再试一次,它会使用你的 git 凭证与 gitlab 一起工作。
例如,您的存储库位于https://gitlab.com/yourname/hello
你跑
go get gitlab.com/yourname/hello