about summary refs log tree commit diff
diff options
context:
space:
mode:
authorVivek Galatage <vivekgalatage@gmail.com>2013-04-09 15:45:22 +0530
committerVivek Galatage <vivekgalatage@gmail.com>2013-04-09 15:45:22 +0530
commitf9f8a3e72c823d3858ebcd9aa021e619b6a37d77 (patch)
tree5b5c6cf7c8af0c9644f4867a0969210be9979904
parent5f13e9ccc2e3328d4cd8ca49f84e6840dd998346 (diff)
downloadrust-f9f8a3e72c823d3858ebcd9aa021e619b6a37d77.tar.gz
rust-f9f8a3e72c823d3858ebcd9aa021e619b6a37d77.zip
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.
-rw-r--r--.gitmodules4
1 files changed, 2 insertions, 2 deletions
diff --git a/.gitmodules b/.gitmodules
index 4c61c7e409b..52ece628c57 100644
--- a/.gitmodules
+++ b/.gitmodules
@@ -1,6 +1,6 @@
 [submodule "src/llvm"]
 	path = src/llvm
-	url = git://github.com/brson/llvm.git
+	url = https://github.com/brson/llvm.git
 [submodule "src/libuv"]
 	path = src/libuv
-	url = git://github.com/brson/libuv.git
+	url = https://github.com/brson/libuv.git