mirror of
https://github.com/rust-lang/rust.git
synced 2026-04-27 18:57:42 +03:00
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:
+2
-2
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user