我正试图将一个私有的gitlab存储库导入我的Go代码中。我想使用用户访问令牌进行身份验证。有没有一种方法可以在import命令中传递访问令牌。
我尝试在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