Re: [Discuss] soften warning message after cloning "void"
From: Junio C Hamano <hidden>
Date: 2016-06-15 23:03:53
Stefan Beller [off-list ref] writes:
On Wed, Feb 18, 2015 at 6:54 PM, Junio C Hamano [off-list ref] wrote:quoted
On Wed, Feb 18, 2015 at 4:43 PM, Shawn Pearce [off-list ref] wrote:quoted
This fails from a JGit server because the ref advertisement for an empty repository differs and disagrees with the format used by git-core. The result is a confused client spewing an odd checkout message.That is exactly why the rephrasing was brought up, wasn't it? As the Subject: line says, this thread is for people who want to help those users with un-odd message, so discuss away and come up with a final applicable patch ;-)."warning: remote HEAD does not exist, not checking out any branch." would then be the correct answer.
Technically speaking, that is incorrect because HEAD already points
at 'master'. We DO check out a 'master' branch. What is unusual is
that the branch has not been born yet, and that is exactly the same
state after 'git init' created an empty directory. I.e.
$ git init new
$ cd new
$ git remote add origin $URL
$ git symbolic-ref HEAD
refs/heads/master
would be exactly the same place where you are when you see that
message.
What we are not doing is not "not checking out". What we are not
doing is to fast-forwarding the void to any of the branches the
remote has, because we do not know which branch the remote wants
us to start our history from by default.
So, "warning: not starting history of 'master' from any of the
remote's branches, as their HEAD does not point to a valid branch"
or something like that?