我想克隆GitLab仓库没有提示我的自动化脚本,通过使用我的私人令牌从我的GitLab帐户。
有人能给我一个样品吗?
我知道我可以这样做的用户和密码:
git clone https://" + user + ":" + password + "@" + gitlaburl;
我知道这是可能的ssh密钥
但是,这两种选择都不够。
我想克隆GitLab仓库没有提示我的自动化脚本,通过使用我的私人令牌从我的GitLab帐户。
有人能给我一个样品吗?
我知道我可以这样做的用户和密码:
git clone https://" + user + ":" + password + "@" + gitlaburl;
我知道这是可能的ssh密钥
但是,这两种选择都不够。
当前回答
gitlab有很多令牌:
私人的令牌 个人访问令牌 CI/CD运行令牌
我只测试了个人访问令牌使用GitLab社区版10.1.2,示例:
git clone https://gitlab-ci-token:${Personal Access Tokens}@gitlab.com/username/myrepo.git
git clone https://oauth2:${Personal Access Tokens}@gitlab.com/username/myrepo.git
或使用用户名和密码:
git clone https://${username}:${password}@gitlab.com/username/myrepo.git
或输入您的密码:
git clone https://${username}@gitlab.com/username/myrepo.git
但是私有令牌似乎不能工作。
其他回答
在GitLab CI管道中,CI_JOB_TOKEN环境变量为我工作:
git clone https://gitlab-ci-token:${CI_JOB_TOKEN}@gitlab.com/...
来源:Gitlab Docs
顺便说一下,在.gitlab-ci中设置这个变量。Yml有助于调试错误。
variables:
CI_DEBUG_TRACE: "true"
为了让我的未来我快乐:RTFM -不要使用gitlab-ci-令牌,而是使用.netrc文件。
这里有几个要点:
echo -e "machine gitlab.com\nlogin gitlab-ci-token\npassword ${CI_JOB_TOKEN}" > ~/.netrc . 不要忘记用你的URL替换“gitlab.com”! 不要试图聪明,直接创建.netrc文件- gitlab不会替换文件中的$CI_JOB_TOKEN ! 使用https://gitlab.com/whatever/foobar.com -不是ssh://git@foobar,不是git+ssh://,不是git+https://.URL中也不需要任何CI-TOKEN。 确保你可以git clone [url from step 4]
背景:我有
fatal: could not read Username for 'https://gitlab.mycompany.com': No such device or address
当我试着让Ansible + Gitlab + Docker像我想象的那样工作时。现在它起作用了。
您可以更改您的:
user:oauth2
password : <youraccesstoken>
例子:
git clone https://oauth2:<token>@hahahehe.com/yourname/yourproject.git
我去SSH使用每个项目部署键设置(只读)
从8.12开始,不再支持使用HTTPS +运行令牌进行克隆,如下所述:
在8.12中,我们改进了构建权限。从现在开始不支持使用runner令牌克隆项目(它实际上是巧合,从来都不是一个完整的功能,所以我们在8.12中改变了这一点)。您应该使用构建令牌代替。 这是广泛记录在这里- https://docs.gitlab.com/ce/user/project/new_ci_build_permissions_model.html。