git.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* Git Fetch / updating HEAD
@ 2010-07-17 15:32 Mahesh Vaidya
  2010-07-17 15:35 ` Mahesh Vaidya
  0 siblings, 1 reply; 3+ messages in thread
From: Mahesh Vaidya @ 2010-07-17 15:32 UTC (permalink / raw)
  To: git

Hi,

git fetch --all --append updates FETCH_HEAD. I'd like this command to
update HEAD as well; is there any flag ?

I have a reason to do it; trying to implement multisite

A (master) -> B (readonly mirror) -> C (workspace)

if sitting in B; git fetch does't update HEAD


Mahesh Vaidya

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: Git Fetch / updating HEAD
  2010-07-17 15:32 Git Fetch / updating HEAD Mahesh Vaidya
@ 2010-07-17 15:35 ` Mahesh Vaidya
  2010-07-17 16:11   ` Johan Herland
  0 siblings, 1 reply; 3+ messages in thread
From: Mahesh Vaidya @ 2010-07-17 15:35 UTC (permalink / raw)
  To: git

BTW - I have tried this
git  update-ref HEAD  FETCH_HEAD; is this ok ??


On Sat, Jul 17, 2010 at 9:02 PM, Mahesh Vaidya <forvaidya@gmail.com> wrote:
> Hi,
>
> git fetch --all --append updates FETCH_HEAD. I'd like this command to
> update HEAD as well; is there any flag ?
>
> I have a reason to do it; trying to implement multisite
>
> A (master) -> B (readonly mirror) -> C (workspace)
>
> if sitting in B; git fetch does't update HEAD
>
>
> Mahesh Vaidya
>



-- 
Thank you and best regards.
Mahesh Vaidya  / 9740500144
http://www.twitter.com/forvaidya

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: Git Fetch / updating HEAD
  2010-07-17 15:35 ` Mahesh Vaidya
@ 2010-07-17 16:11   ` Johan Herland
  0 siblings, 0 replies; 3+ messages in thread
From: Johan Herland @ 2010-07-17 16:11 UTC (permalink / raw)
  To: Mahesh Vaidya; +Cc: git

On Saturday 17 July 2010, Mahesh Vaidya wrote:
> BTW - I have tried this
> git  update-ref HEAD  FETCH_HEAD; is this ok ??
> 
> On Sat, Jul 17, 2010 at 9:02 PM, Mahesh Vaidya <forvaidya@gmail.com> 
wrote:
> > Hi,
> > 
> > git fetch --all --append updates FETCH_HEAD. I'd like this command to
> > update HEAD as well; is there any flag ?
> > 
> > I have a reason to do it; trying to implement multisite
> > 
> > A (master) -> B (readonly mirror) -> C (workspace)
> > 
> > if sitting in B; git fetch does't update HEAD

You need to set up special refspecs in your B repo, so that git fetch 
updates refs/heads/* instead of refs/remotes/origin/*. When that is done, a 
simple 'git fetch' will update your branches (and HEAD as a result).

In short, you should create the B repo using 'git clone --mirror' (which 
will set up the correct refspecs for you)


...Johan

-- 
Johan Herland, <johan@herland.net>
www.herland.net

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2010-07-17 16:11 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-07-17 15:32 Git Fetch / updating HEAD Mahesh Vaidya
2010-07-17 15:35 ` Mahesh Vaidya
2010-07-17 16:11   ` Johan Herland

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).