ファイルへ移動
h44z ace17a681b „README.md“ ändern
Add a "tested versions" part
2020-06-24 14:53:09 +02:00
.gitignore first commit 2018-12-18 12:28:13 +01:00
LICENSE first commit 2018-12-18 12:28:13 +01:00
README.md „README.md“ ändern 2020-06-24 14:53:09 +02:00
gitea_import_actions.py Add comment 2019-01-01 11:08:59 +01:00
migrate.py Fix regex 2020-06-08 11:29:25 +02:00
requirements.txt add requirements.txt 2019-12-16 11:13:47 +01:00

README.md

Gitlab to Gitea migration script.

This script uses the Gitlab and Gitea API's to migrate all data from Gitlab to Gitea.

This script support migrating the following data:

  • Repositories & Wiki (fork status is lost)
  • Milestones
  • Labels
  • Issues (no comments)
  • Users (no profile pictures)
  • Groups
  • Public SSH keys

Tested with Gitlab Version 13.0.6 and Gitea Version 1.11.6.

Usage

Change items in the config section of the script.

Install all dependencies via python -m pip install -r requirements.txt and use python3 to execute the script.

How to use with venv

To keep your local system clean, it might be helpful to store all Python dependencies in one folder. Python provides a virtual environment package which can be used to accomplish this task.

python3 -m venv migration-env
source migration-env/bin/activate
python3 -m pip install -r requirements.txt

Then start the migration script python3 migrate.py.