How to Clone a Git Repository over HTTPS
Users can no longer use their usernames & passwords with Git over HTTPS. They must now use a Personal Access Token (PAT)
First, to create your token:
-
Set Token Name to
repo_clone
. -
Under Select scopes, select the checkbox
write_repository
.Note down your token - you won't be able to access it again.
Second, perform your git clone
operation now as follows:
# git clone https://<access-token-name>:<access-token>@/app.dataops.live/group/project.git
git clone https://repo_clone:xxxxxxxxxxxxxxxxxxxx@app.dataops.live/group/project.git