- A utility to clone and pull GitLab groups, subgroups, group projects or personal user projects based on path selection
Gitlabber clones or pulls all projects under a subset of groups / subgroups by building a tree from the GitLab API and allowing you to specify which subset of the tree you want to clone using glob patterns and/or regex expressions.
- You can install Gitlabber from PyPi:
pip install gitlabber
- You'll need to create an access token from GitLab with API scopes read_repository
and
read_api
(orapi
, for GitLab versions <12.0)
Arguments can be provided via the CLI arguments directly or via environment variables:
Argument
Flag
Environment Variable
token
-t
GITLAB_TOKEN
url
-u
GITLAB_URL
method
-m
GITLABBER_CLONE_METHOD
naming
-n
GITLABBER_FOLDER_NAMING
include
-i
GITLABBER_INCLUDE
exclude
-x
GITLABBER_EXCLUDE
To view the tree run the command with your includes/excludes and the
-p
flag. It will print your tree like so:
root [http://gitlab.my.com]
├── group1 [/group1]
│ └── subgroup1 [/group1/subgroup1]
│ └── project1 [/group1/subgroup1/project1]
└── group2 [/group2]
├── subgroup1 [/group2/subgroup1]
│ └── project2 [/group2/subgroup1/project2]
├── subgroup2 [/group2/subgroup2]
└── subgroup3 [/group2/subgroup3]
- To see how to use glob patterns and regex to filter tree nodes, see the globre project page.
- Include/Exclude patterns do not work at the API level but work on the results returned from the API, for large Gitlab installations this can take a lot of time, if you need to reduce the amound of API calls for such projects use the
--group-search
parameter to search only for the top level groups the interest you using the Gitlab Group Search API which allows you to do a partial like query for a Group's path or name - Cloning vs Pulling: when running Gitlabber consecutively with the same parameters, it will scan the local tree structure; if the project directory exists and is a valid git repository (has .git folder in it) Gitlabber will perform a git pull in the directory, otherwise the project directory will be created and the GitLab project will be cloned into it.
- Cloning submodules: use the
-r
flag to recurse git submodules, uses the--recursive
for cloning and utilizes GitPython's smart update method for updating cloned repositories - Printed Usage:
usage: gitlabber [-h] [-t token] [-T] [-u url] [--verbose] [-p] [--print-format {json,yaml,tree}] [-n {name,path}] [-m {ssh,http}]
[-a {include,exclude,only}] [-i csv] [-x csv] [-r] [-F] [-d] [-s] [-g term] [-U] [-o options] [--version]
[dest]
Gitlabber - clones or pulls entire groups/projects tree from gitlab
positional arguments:
dest destination path for the cloned tree (created if doesn't exist)
options:
-h, --help show this help message and exit
-t token, --token token
gitlab personal access token https://docs.gitlab.com/ee/user/profile/personal_access_tokens.html
-T, --hide-token use an inline URL token (avoids storing the gitlab personal access token in the .git/config)
-u url, --url url base gitlab url (e.g.: 'http://gitlab.mycompany.com')
--verbose print more verbose output
-p, --print print the tree without cloning
--print-format {json,yaml,tree}
print format (default: 'tree')
-n {name,path}, --naming {name,path}
the folder naming strategy for projects from the gitlab API attributes (default: "name")
-m {ssh,http}, --method {ssh,http}
the git transport method to use for cloning (default: "ssh")
-a {include,exclude,only}, --archived {include,exclude,only}
include archived projects and groups in the results (default: "include")
-i csv, --include csv
comma delimited list of glob patterns of paths to projects or groups to clone/pull
-x csv, --exclude csv
comma delimited list of glob patterns of paths to projects or groups to exclude from clone/pull
-r, --recursive clone/pull git submodules recursively
-F, --use-fetch clone/fetch git repository (mirrored repositories)
-d, --dont-checkout don't checkout pulled git repository
-s, --include-shared include shared projects in the results
-g term, --group-search term
only include groups matching the search term, filtering done at the API level (useful for large projects, see: https://docs.gitlab.com/ee/api/groups.html#search-for-group works with partial names of path or name)
-U, --user-projects fetch only user personal projects (skips the group tree altogether, group related parameters are ignored). Clones personal projects to '{gitlab-username}-personal-projects'
-o options, --git-options options
provide additional options as csv for the git command (e.g., --depth=1). See: clone/multi_options https://gitpython.readthedocs.io/en/stable/reference.html#
--version print the version
examples:
clone an entire gitlab tree using a url and a token:
gitlabber -t <personal access token> -u <gitlab url>
only print the gitlab tree:
gitlabber -p .
clone only projects under subgroup 'MySubGroup' to location '~/GitlabRoot':
gitlabber -i '/MyGroup/MySubGroup**' ~/GitlabRoot
clone only projects under group 'MyGroup' excluding any projects under subgroup 'MySubGroup':
gitlabber -i '/MyGroup**' -x '/MyGroup/MySubGroup**' .
clone an entire gitlab tree except projects under groups named 'ArchiveGroup':
gitlabber -x '/ArchiveGroup**' .
clone projects that start with a case insensitive 'w' using a regular expression:
gitlabber -i '/{[w].*}' .
clone a user's personal projects to username-personal-projects
gitlabber -U .
perform a shallow clone of the git repositories
gitlabber -o "\-\-depth=1," .
- You can use the
--verbose
flag to print Gitlabber debug messages - For more verbose GitLab messages, you can get the GitPython module to print more debug messages by setting the environment variable:
export GIT_PYTHON_TRACE='full'
GitlabHttpError: 503
: make sure you provide the base URL to your GitLab installation (e.g., https://gitlab.my.com and not https://gitlab.my.com/some/nested/path)git.exc.GitCommandError: Cmd('git') failed due to: exit code(128)
ORERROR: The project you were looking for could not be found or you don't have permission to view it.
: if you are using Git's SSH method, follow the SSH Guide from Gitlab and ensure you have your SSH key in Gitlab for clone or use the HTTP method (-m http
flag)
- Renaming, moving and deleting projects: Gitlabber doesn't maintain local tree state (projects and groups). For that reason is does not rename move or delete local projects when they are modified on the server. When projects are moved or renamed, Gitlabber will clone them again under their new name or location. When deleted, Gitlabber will not delete the local project.
- Folder naming strategy: Consecutively running Gitlabber with different values for the
-n
parameter will produce undesirable results. Use the same value as previous runs, or simply don't change it from the default (project name). - If you're going to clone a large number of projects, observe rate limits for gitlab.com, and for on-premise installations.
- Gitlabber tutorial by nsk