cpliakas/git-sync

Synchronizes Git repositories.

1.0.0-beta3 2013-03-07 05:34 UTC

This package is auto-updated.

Last update: 2024-03-25 10:59:31 UTC


README

GitSync is a PHP library that synchronizes a source repository to a destination repository. This project integrates with the Git Wrapper library.

Usage

This example mirrors the Git Wrapper repository into a local repository that was initialized with git init --bare /var/git/mirror/git-wrapper.

use GitWrapper\GitWrapper;
use GitSync\GitMirror;

require_once 'vendor/autoload.php';

$wrapper = new GitWrapper();
$git = $wrapper->workingCopy('./working-copy');

$mirror = new GitMirror($git, 'git://github.com/cpliakas/git-wrapper.git');
$mirror->sync('file:///var/git/mirror/git-wrapper');