A Python script for importing GitLab repositories into GitHub and GitLab through APIs
- Create empty private repository on GitHub / GitLab
- Clone desired GitLab repository to local temp folder using
git clone <gitlab-url> <path>
- Update remote repo url in GitLab repo clone using
git remote set-url origin <new-repo-url>
- Push GitLab repo clone to repo created in Step 1 using
git push --all
- Delete temp folder on local machine
- Generate access tokens and put each in a separate text file
- Git clone this repo
- Cd into the repo clone
- Create and activate virtual environment (tutorial)
- Install dependencies
- Complete TODO at the top of importRepos.py
git clone https://github.com/liy-che/gitlab-to-github.git
cd gitlab-to-github
python -m venv venv
pip install -r requirements.txt
# open and complete importRepos.py TODO
python importRepos.py [-h] [-l] srcSecret.txt destSecret.txt
positional arguments:
srcSecret.txt File that contains only the secret key for the source API
destSecret.txt File that contains only the secret key for the destination API
optional arguments:
-h, --help show this help message and exit
-l, --gitlab specifies that the destination is gitlab