我正在使用Yeoman
申请。它使用Bower
包管理器。 Bower从服务器https://bower.herokuapp.com/packages获取的所有URL都是git://github.com/components/jquery.git
形式的Git只读URL。
问题是这些网址在我的机构内部无效。可能是端口被阻塞了。
在发现从服务器获取网址之前,我尝试将Bower lib/core/package.js
中的网址更改为HTTPS
。
那么有没有办法让Bower
能够使用Github的只读HTTPS
网址,而不是GIT
?
答案 0 :(得分:0)
您可以使用git://
生成git替换https://
:
git:// protocol blocked by company, how can I get around that?