jochumdev / vcs-mirrors

Mirror your VCS with ease

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

vcs-mirrors

A python-only clone of https://github.com/samrocketman/gitlab-mirrors/ with a YAML config file.

Requirements

Features

  • Mirror different types of source repositories: Bazaar, Git, Subversion. Mirror all into git.
  • GitLab mirror adding.
    • When adding a mirror if the project doesn't exist in GitLab it will be auto-created.
    • Set project creation defaults (e.g. issues enabled, wiki enabled, etc.)
  • Github mirror adding.
    • Same as with Gitlab.
  • mirror anything to Git (not just Gitlab and Github).
  • Update a single mirror.
  • Update all known mirrors.

Installation

On Debian

For Bazaar support:

$ apt install git-remote-bzr

Install into a virtualenv:

$ virtualenv -p /usr/bin/python3 --no-site-packages venv
$ venv/bin/pip install "vcs-mirrors[gitlab,github]"

Then copy vcs-mirrors.yaml.example into your current-working-directory:

$ cp venv/lib/python3.6/site-packages/vcs-mirrors/vcs-mirrors.yaml.sample vcs-mirrors.yaml

Edit it for your needs.

Usage

venv/bin/vcs-mirrors -h
venv/bin/vcs-mirrors add -h

add examples:

This one try to create a repo "pcdummy/proxmox-dockerfiles" on git.lxch.eu - the identifier must be unique in the config file:

$ vcs-mirrors add me/p-dockerfiles https://github.com/pcdummy/proxmox-dockerfiles.git git.lxch.eu:pcdummy/proxmox-dockerfiles

This doesn't:

$ vcs-mirrors add me/p-dockerfiles https://github.com/pcdummy/proxmox-dockerfiles.git git@git.lxch.eu:pcdummy/proxmox-dockerfiles.git

Full mirroring include "prune" and "force" pull/push:

$ vcs-mirrors add -f -p me/p-dockerfiles https://github.com/pcdummy/proxmox-dockerfiles.git git.lxch.eu:pcdummy/proxmox-dockerfiles

If you give an host as target "add" creates the repo on the host and translates it to a git URL else add does nothing else than adding the params to your configuration file.

Development

$ pip install -e ."[development,gitlab,github]"

Keywords

gitlab github sync mirror vcs-mirror bazaar

About

Mirror your VCS with ease

License:MIT License


Languages

Language:Python 100.0%