Skip to content

mrotame/git-auto-mirror

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 
 
 
 
 

Repository files navigation

git-auto-mirror

Description

This project intends to enable auto-mirroring across multiples git servers and repositories. Push once and have you app in all git servers you want to

image

Installing

Starting by cloning this repository

> git clone https://github.com/mrotame/git-auto-mirror.git
> cd git-auto-mirror

After that config a new python environment (from your preference)

> virtualenv env
> source env/bin/activate
# "env/Scripts/activate" on windows

Finally, install all packages required to run this app

pip install -r requirements.txt

Create a file named repos.iniat the main directory. this will be the file where we will configure the master repository and the slaves (that will receive the mirrored master repository)

> touch repos.ini
> nano repos.ini

The file must be filled in as follows:

[DEFAULT]
url = 'https://username:password@url_from_master_git_repository'
   
[github-slave]
url = 'https://authToken@url_from_slave_02_git_repository

[bitbucket-slave]
url = 'https://username:password@url_from_slave_02_git_repository

[my-awesome-custom-git-server]
url = 'https://username:password@url_from_slave_01_git_repository'

the DEFAULT carries the url from the master git repository you will be pushing to, while the slaves after the DEFAULT is the gits that will receive the cloning. Except for the DEFAULT, the names of the slaves doesnt matter at all, you can name as you want to.

If you want to add more slaves, just insert it below, and if you want less, just remove what you will not be using You can add as many git servers as you want (minimum of one, maximum of as many your machine can handle to process)

to start the app, run the file app.py in src/ directory

> python src/app.py

The application will be running on loop, checking for new commits on the master repository, to replicate to the others

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages