We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi, just wanted to ask if you already have experience with migrating to Gitlab.com.
I just tried to migrate a dummy project. It seems that reading from Gitlab.com is ok, however creating projects hangs.
After some debugging I found that this LINE blocks
users_dst = gitlab_dst.users.auto_paginate
Makes sense somehow. Gitlab.com has >100K users. ^^
Therefore, looping over users and groups should be avoided.
users
groups
Managed to migrate one project, but had to make API calls with curl to get e.g. group id on Gitlab.com and Users id, and do the user mapping manually.
curl
group id
Users id
Not so nice. Any thoughts?
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hi,
just wanted to ask if you already have experience with migrating to Gitlab.com.
I just tried to migrate a dummy project. It seems that reading from Gitlab.com is ok, however creating projects hangs.
After some debugging I found that this LINE blocks
Makes sense somehow. Gitlab.com has >100K users. ^^
Therefore, looping over
users
andgroups
should be avoided.Managed to migrate one project, but had to make API calls with
curl
to get e.g.group id
on Gitlab.com andUsers id
, and do the user mapping manually.Not so nice. Any thoughts?
The text was updated successfully, but these errors were encountered: