Skip to content

Commit f9f8a3e

Browse files
committed
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.
1 parent 5f13e9c commit f9f8a3e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.gitmodules

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[submodule "src/llvm"]
22
path = src/llvm
3-
url = git://github.com/brson/llvm.git
3+
url = https://github.com/brson/llvm.git
44
[submodule "src/libuv"]
55
path = src/libuv
6-
url = git://github.com/brson/libuv.git
6+
url = https://github.com/brson/libuv.git

0 commit comments

Comments
 (0)