Support https protocol for git submodules for rust

Currently submodules are using the git protocol. Git protocol is blocked
by certain corporate networks which makes it difficult to sync the submodules.

Replacing the git protocol with https in order to sync the submodules.
This commit is contained in:
Vivek Galatage 2013-04-09 15:45:22 +05:30
parent 5f13e9ccc2
commit f9f8a3e72c
1 changed files with 2 additions and 2 deletions

4
.gitmodules vendored
View File

@ -1,6 +1,6 @@
[submodule "src/llvm"] [submodule "src/llvm"]
path = src/llvm path = src/llvm
url = git://github.com/brson/llvm.git url = https://github.com/brson/llvm.git
[submodule "src/libuv"] [submodule "src/libuv"]
path = src/libuv path = src/libuv
url = git://github.com/brson/libuv.git url = https://github.com/brson/libuv.git