On Mon, Apr 11, 2016 at 12:04:02PM -0400, Isaac Levy wrote: > I use a git server which requires authentication over https. Git seems > determined to always try an unauthenticated request first, slowing > down operations by a couple seconds. > > Is there a way to configure git to default to authenticated requests? Thanks! No, there isn't. Very old versions of git would ask for the password if you provided a username, but since v1.7.8 we only do so in response to an HTTP 401. The code is still there to do the "proactive" asking, but it's not wired up to any particular config option. However, I don't think even that would give you what you want. Because I think that even if we provide a credential, curl will make an initial request (presumably to find out which auth type it should use, but that is just a guess). I don't know if there is a way to convince curl to stick the credential in the first request (if my guess is right, then perhaps by setting the auth type explicitly, or even by sticking in our own Authorization header). So I think the answer for now is "no", but it might be possible (and not even that hard) to do with a patch. -Peff -- 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