Rollup merge of #53959 - tlively:fix-submodules, r=alexcrichton
Add .git extension to submodule paths missing it Fixes a problem where submodules could not be cloned under some git configurations. Specifically, when url.git@github.com:.insteadOf = https://github.com/ is set.
This commit is contained in:
commit
7e9fb78962
1 changed files with 8 additions and 7 deletions
15
.gitmodules
vendored
15
.gitmodules
vendored
|
@ -28,7 +28,7 @@
|
||||||
url = https://github.com/rust-lang-nursery/rls.git
|
url = https://github.com/rust-lang-nursery/rls.git
|
||||||
[submodule "src/libcompiler_builtins"]
|
[submodule "src/libcompiler_builtins"]
|
||||||
path = src/libcompiler_builtins
|
path = src/libcompiler_builtins
|
||||||
url = https://github.com/rust-lang-nursery/compiler-builtins
|
url = https://github.com/rust-lang-nursery/compiler-builtins.git
|
||||||
[submodule "src/tools/clippy"]
|
[submodule "src/tools/clippy"]
|
||||||
path = src/tools/clippy
|
path = src/tools/clippy
|
||||||
url = https://github.com/rust-lang-nursery/rust-clippy.git
|
url = https://github.com/rust-lang-nursery/rust-clippy.git
|
||||||
|
@ -43,24 +43,25 @@
|
||||||
url = https://github.com/alexcrichton/dlmalloc-rs.git
|
url = https://github.com/alexcrichton/dlmalloc-rs.git
|
||||||
[submodule "src/doc/rust-by-example"]
|
[submodule "src/doc/rust-by-example"]
|
||||||
path = src/doc/rust-by-example
|
path = src/doc/rust-by-example
|
||||||
url = https://github.com/rust-lang/rust-by-example
|
url = https://github.com/rust-lang/rust-by-example.git
|
||||||
[submodule "src/llvm-emscripten"]
|
[submodule "src/llvm-emscripten"]
|
||||||
path = src/llvm-emscripten
|
path = src/llvm-emscripten
|
||||||
url = https://github.com/rust-lang/llvm
|
url = https://github.com/rust-lang/llvm.git
|
||||||
[submodule "src/stdsimd"]
|
[submodule "src/stdsimd"]
|
||||||
path = src/stdsimd
|
path = src/stdsimd
|
||||||
url = https://github.com/rust-lang-nursery/stdsimd
|
url = https://github.com/rust-lang-nursery/stdsimd.git
|
||||||
[submodule "src/tools/lld"]
|
[submodule "src/tools/lld"]
|
||||||
path = src/tools/lld
|
path = src/tools/lld
|
||||||
url = https://github.com/rust-lang/lld.git
|
url = https://github.com/rust-lang/lld.git
|
||||||
[submodule "src/libbacktrace"]
|
[submodule "src/libbacktrace"]
|
||||||
path = src/libbacktrace
|
path = src/libbacktrace
|
||||||
url = https://github.com/rust-lang-nursery/libbacktrace
|
url = https://github.com/rust-lang-nursery/libbacktrace.git
|
||||||
[submodule "src/tools/lldb"]
|
[submodule "src/tools/lldb"]
|
||||||
path = src/tools/lldb
|
path = src/tools/lldb
|
||||||
url = https://github.com/rust-lang-nursery/lldb/
|
url = https://github.com/rust-lang-nursery/lldb.git
|
||||||
branch = rust-release-80-v1
|
branch = rust-release-80-v1
|
||||||
[submodule "src/tools/clang"]
|
[submodule "src/tools/clang"]
|
||||||
path = src/tools/clang
|
path = src/tools/clang
|
||||||
url = https://github.com/rust-lang-nursery/clang/
|
url = https://github.com/rust-lang-nursery/clang.git
|
||||||
branch = rust-release-80-v1
|
branch = rust-release-80-v1
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue