git.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* Fetch and refs/remotes/<refname>/HEAD
@ 2015-08-03 13:28 Dror Livne
  2015-08-09 23:23 ` Jeff King
  0 siblings, 1 reply; 2+ messages in thread
From: Dror Livne @ 2015-08-03 13:28 UTC (permalink / raw)
  To: git

I have noticed that when cloning a repository, I get a
refs/remotes/origin/HEAD symbolic ref.

On the other hand, when fetching a new remote, the remote HEAD is not set by
git-fetch (but can be added later by `git remote set-head ...')

I was under the impression that clone is equivalent to (at least) init+fetch.

Is there a rationale for that difference in behavior?

Dror Livne

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

* Re: Fetch and refs/remotes/<refname>/HEAD
  2015-08-03 13:28 Fetch and refs/remotes/<refname>/HEAD Dror Livne
@ 2015-08-09 23:23 ` Jeff King
  0 siblings, 0 replies; 2+ messages in thread
From: Jeff King @ 2015-08-09 23:23 UTC (permalink / raw)
  To: Dror Livne; +Cc: git

On Mon, Aug 03, 2015 at 01:28:05PM +0000, Dror Livne wrote:

> I have noticed that when cloning a repository, I get a
> refs/remotes/origin/HEAD symbolic ref.
> 
> On the other hand, when fetching a new remote, the remote HEAD is not set by
> git-fetch (but can be added later by `git remote set-head ...')
> 
> I was under the impression that clone is equivalent to (at least) init+fetch.
> 
> Is there a rationale for that difference in behavior?

I have been annoyed by this in the past, too. There's no real reason,
except that setting up the symref is outside the scope of "fetch".
Fetching is just about updating refs, and we explicitly do not want
subsequent fetches to overwrite any changes you might make to
refs/remotes/.../HEAD.

Setting up the remote HEAD symref more rightly belongs to "git remote
add", but that program does not otherwise talk to the remote. And that's
why we end up with the separate set-head step.  It might make sense for
"git remote add -f" to automatically run "set-head", since it is
contacting the remote server already. And then:

  git init
  git remote add -f origin ...

would be similar to "git clone".

-Peff

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

end of thread, other threads:[~2015-08-09 23:23 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-08-03 13:28 Fetch and refs/remotes/<refname>/HEAD Dror Livne
2015-08-09 23:23 ` Jeff King

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).