Setting Up a GIT Repository Mirror

3 messages, 2 authors, 2016-06-15 · open the first message on its own page

Setting Up a GIT Repository Mirror

From: Yaser Raja <hidden>
Date: 2016-06-15 22:45:36

Hi

I have a main repository placed at a remote location and i want to
have a read-only mirror of this repository available locally. The
users/automated processes will use this local mirror to get the latest
code.

Can anyone guide me how to implement this? I did make a basic setup as
follows but it has some issues:

1. Create a clone (MirrorRep) of the remote git repository (MainRep)
on a local machine using "git-clone" command
         git-clone ssh://<user>@<remote machine addr> MyMirror

2. Use "git-pull" to keep this repository (MirrorRep) in sync with the
main repository. I added entry in /etc/crontab to invoke "git-pull"
after every 10 minutes to update this repository.

3. Launch "git-daemon" so that local users can access and clone from
this  Mirror Repository.
         git-daemon --export-all --verbose --base-path=<base path to
MyMirror directory>

After this the users can easily clone from the local repository and
work with it. The problem is that the branches that were present in
MainRep are not visible in the clones made using MirrorRep. When
MirrorRep was created all the branches of MainRep became remote
branches for MirrorRep. And when users make a clone from MirrorRep
none of the remote branches are transfered over.

I came to know about --mirror option of git-clone and used it to make
a bare repository replica of the MainRep. Now i am not sure how to
keep it in sync with the MainRep.

Thanks
Yaser

Re: Setting Up a GIT Repository Mirror

From: Santi Béjar <hidden>
Date: 2016-06-15 22:45:36

On Thu, Nov 6, 2008 at 4:08 PM, Yaser Raja [off-list ref] wrote:
Hi
[...]
I came to know about --mirror option of git-clone and used it to make
a bare repository replica of the MainRep. Now i am not sure how to
keep it in sync with the MainRep.
$ git fetch

as it is bare you cannot merge, so you cannot pull.

HTH,
Santi

Re: Setting Up a GIT Repository Mirror

From: Yaser Raja <hidden>
Date: 2016-06-15 22:45:37

On Thu, Nov 6, 2008 at 8:33 PM, Santi Béjar [off-list ref] wrote:
On Thu, Nov 6, 2008 at 4:08 PM, Yaser Raja [off-list ref] wrote:
quoted
Hi
[...]
quoted
I came to know about --mirror option of git-clone and used it to make
a bare repository replica of the MainRep. Now i am not sure how to
keep it in sync with the MainRep.
$ git fetch

as it is bare you cannot merge, so you cannot pull.

HTH,
Santi
Here is what i get when i try to use git-fetch:

# git fetch
ssh: : Name or service not known
fatal: The remote end hung up unexpectedly

Following is the current content of my config file:

[core]
        repositoryformatversion = 0
        filemode = true
        bare = true
[remote "origin"]
        url = ssh://gituser@<addr removed>
        fetch = +refs/*:refs/*
        mirror = yes

I also tried git-fetch with the url as argument but that also gave the
same error. Do i need to do some additional configurations to make
fetch work?

Thanks
Yaser
Keyboard shortcuts
hback out one level
jnext message in thread
kprevious message in thread
ldrill in
Escclose help / fold thread tree
?toggle this help