Skip to content
Snippets Groups Projects
Name Last commit Last update
.gitignore
LICENSE.txt
README.md
git-mirror.sh

git-mirror.sh

No-thrills / uni-directional git mirroring.

Mirrors a git repository A to a repository B. (This solution does not need a post-receive hook on A.)

Usage

Clone the source to a location of your choice.

$ git clone git@gitlab.example.com:path/to/repo.git source_repo

Add the target repository as a remote (make sure you can push to target!).

$ cd source_repo
$ git remote add target git@github.com:target/repo.git

Trigger script manually or via cronjob/systemd timer.

$ ./git-mirror.sh source_repo