From f9f8a3e72c823d3858ebcd9aa021e619b6a37d77 Mon Sep 17 00:00:00 2001 From: Vivek Galatage Date: Tue, 9 Apr 2013 15:45:22 +0530 Subject: [PATCH] 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. --- .gitmodules | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitmodules b/.gitmodules index 4c61c7e409bd7..52ece628c573f 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