Skip to content

Instantly share code, notes, and snippets.

View giordy's full-sized avatar

Giordano Battilana giordy

View GitHub Profile
@giordy
giordy / gitlab-to-bitbucket.py
Last active March 23, 2023 15:22 — forked from danhper/gitlab-to-bitbucket.py
Script to migrate repositories from GitLab to Bitbucket. It pushes all the branches and tags and doesn't fail if the repo exists already (in case of retry)
import os
import re
import subprocess
import requests
GITLAB_ENDPOINT = os.environ["GITLAB_ENDPOINT"]
GITLAB_TOKEN = os.environ["GITLAB_TOKEN"]