How to change Julia GIT settings?

How can I change the GIT settings that Julia uses? It doesn’t seem to obey the .gitconfig file in my home directory.

In my case I would like to change the default from https:// to git://.

This is related to my other problem but I’ll keep searching for a solution to that as well.

Windows 10.0.17763
Julia Version 1.1.1
Commit 55e36cc308 (2019-05-16 04:10 UTC)
Platform Info:
	OS: Windows (x86_64-w64-mingw32)
	CPU: Intel(R) Core(TM) i9-9900K CPU @ 3.60GHz
	WORD_SIZE: 64
	LIBM: libopenlibm
	LLVM: libLLVM-6.0.1 (ORCJIT, skylake)

Does this help?

help?> Pkg.setprotocol!
Pkg.setprotocol!(proto::Union{Nothing, AbstractString}=nothing)

Set the protocol used to access GitHub-hosted packages when adding a url or developing a package. Defaults to delegating the choice to the package
developer (proto == nothing). Other choices for proto are “https” or “git”.

That works.

using Pkg
Pkg.setprotocol!("git")