This script migrates milestones, issues and wiki pages from trac to GitLab.
NOTE: This project is in deprecated, in favor of tracboat/tracboat.
- Component & Issue-Type are converted to labels
- Comments to issues are copied over
- Supports two modes of tansfer:
- Using GitLab web API
- Direct access through GitLab's database and file system
- In direct mode, attachments are transfered and the issues and notes dates and ownership are preserved
- In API mode, attachments are not transfered, issues and notes are owned by a single user and their dates are the current date.
Migrating a trac project to GitLab is a relatively complex process involving four steps:
- Create a new project
- Migrate the repository (can just be cloning a git repository if the trac project is already using git or could involve converting from subversion using git-svn)
- Create the users for the project
- Migrate issues and milestones
- Migrate wiki pages
This script takes care of the last two bullet points and provides help for the third one.
Usage:
- copy
migrate.cfg.example
tomigrate.cfg
- configure the values
- run
./collect-users.py
to extract the user names from Trac - update
migrate.cfg
and create the users in GitLab - run (
./migrate.py
). Make sure you test it on a test project prior, if you run it twice against the same project you will get duplicated issues unless you're using direct access with overwrite set to yes.
Issues and milestones are copied to GitLab.
Wiki pages are copied to a folder on your machine and must be pushed into GitLab using wiki's git access.
The database model should correspond to the version of GitLab that you are using.
This repo contains models for multiple versions (gitlab_direct/model.py) and the version number should be updated correspondingly in the imports in gitlab_direct/init.py and gitlab_direct/Connection.py.
To support a new version, use pwiz.py:
$ pwiz.py -e postgresql -u gitlab gitlabhq_production > gitlab_direct/model<version>.py
Manual updates must then be applied, see for instance the manual updates for 6.4.
The configuration must be located in a file named "migrate.cfg"
url
- xmlrpc url to trac, e.g.https://user:secret@www.example.com/projects/thisismyproject/login/xmlrpc
project_name
- the destination project including the paths to it. Basically the rest of the clone url minus the ".git". E.g.jens.neuhalfen/task-ninja
.method
- direct or api
ÄPI mode:
url
- e.g.https://www.exmple.com/gitlab/api/v3
access_token
- the access token of the user creating all the issues. Found on the account page, e.g.secretsecretsecret
ssl_verify
- set toyes
to verify SSL server certificates.
Direct mode:
- ```overwrite````- if set to yes, the milestones and issues are cleared for this projects and issues are recreated with their trac id (useful to preserve trac links)
db-name
- MySQL database namedb-user
- MySQL user namedb-password
- MySQL passworduploads
- GitLab uploads directoryusernames
Comma separed list of username mappings such as:trac1->git1, trac2->git2
migrate
- Should the wiki pages be converted?target-directory
- Directory in which the wiki pages should be written
migrate
- Should we migrate issues and milestones?
LGPL license version 3.0 (see the licences directory).
- The main program has been cloned from https://gitlab.dyomedea.com/vdv/trac-to-gitlab which itself has been cloned from https://github.com/neuhalje/hack-copy-track-issues-to-gitlab
- Trac2down.py (the conversion of trac wiki markup to markdown) has been cloned from https://gist.github.com/sgk/1286682 and https://gist.github.com/tcchau/4628317
- Python 3.2, xmlrpclib, requests
- Trac with XML-RPC plugin enabled
- Gitlab
And also, if you use the direct access to GitLab's database: