John Szakmeister [off-list ref] writes:
On Thu, Jun 20, 2013 at 9:16 AM, Ramkumar Ramachandra
[off-list ref] wrote:
quoted
Hi,
So this should explain the problem:
# using v1.8.3.1
$ git clone https://google.com
Cloning into 'google.com'...
fatal: repository 'https://google.com/' not found
# using master
$ git clone https://google.com
Cloning into 'google.com'...
fatal: repository 'https://google.com/' not found
fatal: Reading from helper 'git-remote-https' failed
I can see where this is confusing, but can also see how it's useful
information to have. On clone, it's probably not that useful since
you're looking right at the url, but I could see that information
being more useful on a pull or push with the default arguments (when
the source and destination aren't quite as obvious).
The "extra" error messages is not the first one, but the last one,
and the suggested revert is a proposal to remove the latter, not the
"repository $URL not found".
On Fri, Jun 21, 2013 at 1:11 PM, Junio C Hamano [off-list ref] wrote:
John Szakmeister [off-list ref] writes:
[snip]
quoted
I can see where this is confusing, but can also see how it's useful
information to have. On clone, it's probably not that useful since
you're looking right at the url, but I could see that information
being more useful on a pull or push with the default arguments (when
the source and destination aren't quite as obvious).
The "extra" error messages is not the first one, but the last one,
and the suggested revert is a proposal to remove the latter, not the
"repository $URL not found".
Sorry for the confusion. I realize they were talking about removing
the remote helper line. What I meant was that with the url there,
it's a bit easier to determine which part of git failed (http, hg, or
bzr remote helper, for instance). What I was trying to say was
perhaps there are paths through here where it's really helpful to know
that things failed in the remote helper, so we may not want to
wholesale remove it. Some of remote helpers, such as ones that talk
to foreign VCSes, do quite a bit more than just transfer data, so it
might be helpful to know that it's not core git that's failing but the
remote helper. Seeing the URL is a reminder that you're interacting
with a remote helper, and it may not be helpful there. But other
commands don't necessarily show that to you, and it may be more
helpful to have that reminder that it was a remote helper that failed.
I hope that makes more sense.
-John