在Windows上的Git:致命的:无法从远程存储库读取

我试图在提示符下使用这个命令在Windows上使用Git

git ls-remote --tags --heads git://github.com/jquery/jquery.git 

而我收到这个错误:

 fatal: Could not read from remote repository. Please make sure you have the correct access rights and the repository exists. 

我正在关注Web上的这个教程 ,我想知道发生了什么(防火墙或其他)。

我与git noob,所以任何帮助将不胜感激。

我的企业防火墙已经阻止了git协议。 我改变使用https协议的git,所以它的工作原理。

 git config --global url."https://".insteadOf git://