forked from mono/mono
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Stop using git protocol for submodules
GitHub is removing support for unencrypted git soon: https://github.blog/2021-09-01-improving-git-protocol-security-github/
- Loading branch information
1 parent
22da2fe
commit d4a369b
Showing
8 changed files
with
32 additions
and
32 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,73 +1,73 @@ | ||
[submodule "external/aspnetwebstack"] | ||
path = external/aspnetwebstack | ||
url = git://github.com/mono/aspnetwebstack.git | ||
url = https://github.com/mono/aspnetwebstack.git | ||
[submodule "external/Newtonsoft.Json"] | ||
path = external/Newtonsoft.Json | ||
url = git://github.com/mono/Newtonsoft.Json.git | ||
url = https://github.com/mono/Newtonsoft.Json.git | ||
[submodule "external/cecil"] | ||
path = external/cecil | ||
url = git://github.com/mono/cecil.git | ||
url = https://github.com/mono/cecil.git | ||
[submodule "external/rx"] | ||
path = external/rx | ||
url = git://github.com/mono/rx.git | ||
url = https://github.com/mono/rx.git | ||
branch = rx-oss-v2.2 | ||
[submodule "external/ikvm"] | ||
path = external/ikvm | ||
url = git://github.com/mono/ikvm-fork.git | ||
url = https://github.com/mono/ikvm-fork.git | ||
[submodule "external/ikdasm"] | ||
path = external/ikdasm | ||
url = git://github.com/mono/ikdasm.git | ||
url = https://github.com/mono/ikdasm.git | ||
[submodule "external/reference-assemblies"] | ||
path = external/binary-reference-assemblies | ||
url = git://github.com/mono/reference-assemblies.git | ||
url = https://github.com/mono/reference-assemblies.git | ||
[submodule "external/nunit-lite"] | ||
path = external/nunit-lite | ||
url = git://github.com/mono/NUnitLite.git | ||
url = https://github.com/mono/NUnitLite.git | ||
[submodule "external/nuget-buildtasks"] | ||
path = external/nuget-buildtasks | ||
url = git://github.com/mono/NuGet.BuildTasks | ||
url = https://github.com/mono/NuGet.BuildTasks | ||
[submodule "external/cecil-legacy"] | ||
path = external/cecil-legacy | ||
url = git://github.com/mono/cecil.git | ||
url = https://github.com/mono/cecil.git | ||
branch = mono-legacy-0.9.5 | ||
[submodule "external/boringssl"] | ||
path = external/boringssl | ||
url = git://github.com/mono/boringssl.git | ||
url = https://github.com/mono/boringssl.git | ||
branch = mono | ||
[submodule "external/corefx"] | ||
path = external/corefx | ||
url = git://github.com/mono/corefx.git | ||
url = https://github.com/mono/corefx.git | ||
[submodule "external/bockbuild"] | ||
path = external/bockbuild | ||
url = git://github.com/mono/bockbuild.git | ||
url = https://github.com/mono/bockbuild.git | ||
[submodule "external/linker"] | ||
path = external/linker | ||
url = git://github.com/mono/linker.git | ||
url = https://github.com/mono/linker.git | ||
[submodule "external/roslyn-binaries"] | ||
path = external/roslyn-binaries | ||
url = git://github.com/mono/roslyn-binaries.git | ||
url = https://github.com/mono/roslyn-binaries.git | ||
[submodule "external/corert"] | ||
path = external/corert | ||
url = git://github.com/mono/corert.git | ||
url = https://github.com/mono/corert.git | ||
[submodule "external/xunit-binaries"] | ||
path = external/xunit-binaries | ||
url = git://github.com/mono/xunit-binaries.git | ||
url = https://github.com/mono/xunit-binaries.git | ||
[submodule "external/api-doc-tools"] | ||
path = external/api-doc-tools | ||
url = git://github.com/mono/api-doc-tools.git | ||
url = https://github.com/mono/api-doc-tools.git | ||
[submodule "external/api-snapshot"] | ||
path = external/api-snapshot | ||
url = git://github.com/mono/api-snapshot.git | ||
url = https://github.com/mono/api-snapshot.git | ||
[submodule "external/helix-binaries"] | ||
path = external/helix-binaries | ||
url = git://github.com/mono/helix-binaries.git | ||
url = https://github.com/mono/helix-binaries.git | ||
[submodule "external/illinker-test-assets"] | ||
path = external/illinker-test-assets | ||
url = git://github.com/mono/illinker-test-assets.git | ||
url = https://github.com/mono/illinker-test-assets.git | ||
[submodule "external/llvm-project"] | ||
path = external/llvm-project | ||
url = git://github.com/dotnet/llvm-project.git | ||
url = https://github.com/dotnet/llvm-project.git | ||
branch = release/6.x | ||
[submodule "external/bdwgc"] | ||
path = external/bdwgc | ||
url = git://github.com/Unity-Technologies/bdwgc.git | ||
url = https://github.com/Unity-Technologies/bdwgc.git |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Submodule bdwgc
updated
22 files
+1 −1 | .gitmodules | |
+12 −4 | allchblk.c | |
+24 −1 | alloc.c | |
+4 −2 | darwin_stop_world.c | |
+1 −1 | dyn_load.c | |
+4 −0 | extra/gc.c | |
+7 −0 | finalize.c | |
+13 −4 | headers.c | |
+5 −0 | include/gc.h | |
+4 −3 | include/gc_config_macros.h | |
+1 −0 | include/gc_vector.h | |
+1 −1 | include/private/gc_locks.h | |
+16 −2 | include/private/gc_priv.h | |
+18 −13 | include/private/gcconfig.h | |
+2 −3 | include/private/pthread_stop_world.h | |
+1 −1 | mach_dep.c | |
+13 −1 | mark.c | |
+5 −0 | mark_rts.c | |
+12 −3 | misc.c | |
+9 −0 | os_dep.c | |
+61 −1 | pthread_stop_world.c | |
+14 −1 | vector_mlc.c |
Submodule linker
updated
from 409224 to ed4a94
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters