A tool to transfer your GitLab commit history to GitHub, reflecting your GitLab activity on GitHub’s contribution graph.
This tool fetches your commit history from private GitLab repositories and imports it into a specified GitHub repository, creating a visual representation of your activity on GitHub’s contribution graph. It can be configured for automated daily imports or manual runs.
- Automated Daily Imports: Syncs your GitLab activity with GitHub automatically each day.
- Manual Imports: Allows on-demand updates.
- Secure Data Handling: Requires minimal permissions and uses GitHub repository secrets for configuration.
| Secret Name | Description |
| ----------------- | ---------------------------------------------------------------------- |
| `BASE_URL` | URL of your GitLab instance (e.g., `https://gitlab.com`) |
| `GITLAB_USERNAME` | Your GitLab username |
| `GH_USERNAME` | Your GitHub username |
| `COMMITER_EMAIL` | Email associated with your GitHub profile |
| `GITLAB_TOKEN` | GitLab personal access token (read permissions only) |
| `ORIGIN_TOKEN` | GitHub personal access token (with write permissions for auto-push) |
| `ORIGIN_REPO_URL` | HTTPS URL of your GitHub repository (ensure it has a `.git` extension) |
This approach will automatically keep your activity up to date. The program is being run daily at midnight UTC. It imports your latest commits and automatically pushes them to specified GitHub repository.
To do that follow these steps:
- Fork this repository to your GitHub account.
- Create an empty repository in your GitHub profile where the commits will be pushed.
- Configure repository secrets in your forked repository:
- Go to your forked repository settings.
- Under Security, navigate to Secrets and variables > Actions.

- Add the secrets from section 1:
Once these variables are saved in your Repository secrets, your commits will be automatically updated every day.
You need to have GO installed on your computer
If you prefer to run the importer manually:
- Clone the repository
- Create an
.envfile in the root of your project and provide necessary variables - Run the tool locally whenever you want to sync your activity using `go run ./cmd/go/main.go
- Download the latest release of the tool.
- Set up the same environment variables on your local machine:
export BASE_URL=https://gitlab.com
export GITLAB_USERNAME=your_gitlab_username
export GH_USERNAME=your_github_username
export COMMITER_EMAIL=your_email@example.com
...
- Run the tool binary whenever you want to sync your activity.
This project uses GitHub Actions to automate builds and daily synchronization:
- GitHub Actions Workflow: The .github/workflows/schedule.yml defines the automation steps for building and running the tool.
- Secrets Configuration: The secrets allow secure storage and retrieval of required tokens and URLs during automation.
- GitLab permissions: The tool requires read-only access to your GitLab user and Gitlab repositories (
read_userandread_repository) - GitHub permissions: Your GitHub token must have write access to the destination repository for automatic pushes.
This project is licensed under the MIT License, which allows for free, unrestricted use, copying, modification, and distribution with attribution.