gitlab-migration icon indicating copy to clipboard operation
gitlab-migration copied to clipboard

Script to migrate Gitlab groups and their projects from one Gitlab instance to another.

Results 7 gitlab-migration issues
Sort by recently updated
recently updated
newest added

on older (as in living longer) gitlab instances the pipelines will waste a lot of disk space for artifacts, logs and so on (even if you set the `expire_in` option...

Added Dockerfile, updated IFS from CRLF to LF only, renamed access token vars allowing to be set from Dockerfile, added CURL_PARAMS --raw to avoid encoding issues, updated README.md Fixes #7

It turns out that usernames from source and destination doesn't match. However, I think gitlab matches usernames based on their email address. I was thinking about adding a user mapping...

enhancement

Allow mapping of users between instances based on emails. I tested the function `modifyUserMapping` and it seems to be okay, but I did not test the complete migration script. It...

Hi, is it possible to migrate all projects of a user, instead of only a group? If so, what do i need to change in the code or what parameters...

enhancement
good first issue

Hi, I tried to get it running using a Docker image based on ubuntu:20.04 ``` FROM ubuntu:20.04 ENV SOURCE_GITLAB=git.mycompany.com ENV TARGET_GITLAB=gitlab.com RUN adduser migration RUN apt-get update && \ apt-get...