From afd55a92f0245ffeccbc07da86aa0b7f77a30980 Mon Sep 17 00:00:00 2001 From: Paul Murray <pmurray@gitlab.com> Date: Mon, 7 Oct 2024 09:30:24 +0000 Subject: [PATCH] Add emphasis that the user should be gitlab-ci-token --- doc/ci/jobs/ci_job_token.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/ci/jobs/ci_job_token.md b/doc/ci/jobs/ci_job_token.md index f61b291a4b5c5..1ba4ac5bc276b 100644 --- a/doc/ci/jobs/ci_job_token.md +++ b/doc/ci/jobs/ci_job_token.md @@ -224,7 +224,7 @@ parameter in the `projects` REST API endpoint. ### To `git clone` a private project's repository You can use the job token to authenticate and clone a repository from a private project -in a CI/CD job. For example: +in a CI/CD job. Use `gitlab-ci-token` as the user, and the value of the job token as the password. For example: ```shell git clone https://gitlab-ci-token:${CI_JOB_TOKEN}@gitlab.example.com/<namespace>/<project> -- GitLab