X

Select Your Country

Turkey (Türkçe)Turkey (Türkçe) Worldwide (English)Worldwide (English)
X

Select Your Currency

Türk Lirası $ US Dollar

Downloading All Projects from GitLab

How to download all projects on GitLab
HomepageKnowledge BaseGeneralDownloading All Projects from GitLa...
Downloading All Projects from GitLab

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.

Can't find the information you're looking for?

You have examined the knowledge base in detail, but if you cannot find the information you need,

Create a Support Ticket
Did you find it useful?
(776 times viewed. / 5 people found helpful.)