To download all projects from GitLab, you can use the following Bash script. Paste the script into any file, then change its extension to .sh
. Finally, run it from the terminal.
Note: Prepare the directory where you want the projects to be downloaded beforehand and run the command from this directory.
curl http://GITUSERNAME:[email protected]/api/v4/projects?per_page=100&page=1 |
jq -r '.[].http_url_to_repo' | xargs -L1 git clone
Replace GITUSERNAME
with your GitLab username and USERPASSWORD
with your password. This script will fetch the list of projects from your GitLab instance and clone them into the specified directory.
You have examined the knowledge base in detail, but if you cannot find the information you need,
Create a Support Ticket