Re: Fetch from remote A, push to remote B

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



On 5/31/07, Martin Langhoff <martin.langhoff@xxxxxxxxx> wrote:
Is there an easy way to get a "passthrough" repo setup so I can say on a cronjob

  git-fetch remoteA
  git-push ssh+git://host/path/to/repoB.git remotes/remoteA/<all>

After mucking about with stuff like...

find .git/refs/remotes/origin -type f -printf '%P\0' | xargs -0
-IHEADNAME git-push
git+ssh://git.catalyst.net.nz/var/git/moodle-r2-testing.git
origin/HEADNAME:HEADNAME

I figured out that a bare repo did the trick

 # set things up
 git-clone --bare git+ssh://host-a/bla.git bla-transfer.git

 # on cron do
 GIT_DIR=bla-transfer.git git-fetch git+ssh://host-a/bla.git
 GIT_DIR=bla-transfer.git git-push --all git+ssh://host-b/bla.git

cheers!


martin
-
To unsubscribe from this list: send the line "unsubscribe git" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at  http://vger.kernel.org/majordomo-info.html

[Index of Archives]     [Linux Kernel Development]     [Gcc Help]     [IETF Annouce]     [DCCP]     [Netdev]     [Networking]     [Security]     [V4L]     [Bugtraq]     [Yosemite]     [MIPS Linux]     [ARM Linux]     [Linux Security]     [Linux RAID]     [Linux SCSI]     [Fedora Users]

  Powered by Linux