From 0611880c56ebf798dccfc3af004dfdf0c9ab11c4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Joshua=20Vanda=C3=ABle?= Date: Thu, 10 Jul 2025 20:49:11 +0200 Subject: [PATCH 1/3] .gitmodules: Remove branch specifications for submodules --- .gitmodules | 8 -------- 1 file changed, 8 deletions(-) diff --git a/.gitmodules b/.gitmodules index 7b88bbed25..08bfdb3985 100644 --- a/.gitmodules +++ b/.gitmodules @@ -1,32 +1,26 @@ [submodule "Externals/Qt"] path = Externals/Qt url = https://github.com/dolphin-emu/ext-win-qt.git - branch = master shallow = true [submodule "Externals/mGBA/mgba"] path = Externals/mGBA/mgba url = https://github.com/mgba-emu/mgba.git - branch = master shallow = true [submodule "Externals/FFmpeg-bin"] path = Externals/FFmpeg-bin url = https://github.com/dolphin-emu/ext-win-ffmpeg.git - branch = master shallow = true [submodule "libusb"] path = Externals/libusb/libusb url = https://github.com/libusb/libusb.git - branch = master shallow = true [submodule "Externals/spirv_cross/SPIRV-Cross"] path = Externals/spirv_cross/SPIRV-Cross url = https://github.com/KhronosGroup/SPIRV-Cross.git - branch = main shallow = true [submodule "SDL"] path = Externals/SDL/SDL url = https://github.com/libsdl-org/SDL.git - branch = SDL2 shallow = true [submodule "Externals/zlib-ng/zlib-ng"] path = Externals/zlib-ng/zlib-ng @@ -35,7 +29,6 @@ [submodule "Externals/libspng/libspng"] path = Externals/libspng/libspng url = https://github.com/randy408/libspng.git - branch = v0.7.2 shallow = true [submodule "Externals/VulkanMemoryAllocator"] path = Externals/VulkanMemoryAllocator @@ -43,7 +36,6 @@ [submodule "Externals/cubeb/cubeb"] path = Externals/cubeb/cubeb url = https://github.com/mozilla/cubeb.git - branch = master shallow = true [submodule "Externals/implot/implot"] path = Externals/implot/implot From 00192567079b8e8fe093b7166d75e264b2cef315 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Joshua=20Vanda=C3=ABle?= Date: Thu, 10 Jul 2025 20:50:23 +0200 Subject: [PATCH 2/3] .gitmodules: Add shallow option for all submodules --- .gitmodules | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/.gitmodules b/.gitmodules index 08bfdb3985..4403532b55 100644 --- a/.gitmodules +++ b/.gitmodules @@ -33,6 +33,7 @@ [submodule "Externals/VulkanMemoryAllocator"] path = Externals/VulkanMemoryAllocator url = https://github.com/GPUOpen-LibrariesAndSDKs/VulkanMemoryAllocator.git + shallow = true [submodule "Externals/cubeb/cubeb"] path = Externals/cubeb/cubeb url = https://github.com/mozilla/cubeb.git @@ -40,51 +41,68 @@ [submodule "Externals/implot/implot"] path = Externals/implot/implot url = https://github.com/epezent/implot.git + shallow = true [submodule "Externals/gtest"] path = Externals/gtest url = https://github.com/google/googletest.git + shallow = true [submodule "Externals/rcheevos/rcheevos"] path = Externals/rcheevos/rcheevos url = https://github.com/RetroAchievements/rcheevos.git + shallow = true [submodule "Externals/libadrenotools"] path = Externals/libadrenotools url = https://github.com/bylaws/libadrenotools.git + shallow = true [submodule "Externals/curl/curl"] path = Externals/curl/curl url = https://github.com/curl/curl.git + shallow = true [submodule "Externals/fmt/fmt"] path = Externals/fmt/fmt url = https://github.com/fmtlib/fmt.git + shallow = true [submodule "Externals/lz4/lz4"] path = Externals/lz4/lz4 url = https://github.com/lz4/lz4 + shallow = true [submodule "Externals/xxhash/xxHash"] path = Externals/xxhash/xxHash url = https://github.com/Cyan4973/xxHash.git + shallow = true [submodule "Externals/enet/enet"] path = Externals/enet/enet url = https://github.com/lsalzman/enet.git + shallow = true [submodule "hidapi-src"] path = Externals/hidapi/hidapi-src url = https://github.com/libusb/hidapi + shallow = true [submodule "Externals/tinygltf/tinygltf"] path = Externals/tinygltf/tinygltf url = https://github.com/syoyo/tinygltf.git + shallow = true [submodule "Externals/minizip-ng/minizip-ng"] path = Externals/minizip-ng/minizip-ng url = https://github.com/zlib-ng/minizip-ng + shallow = true [submodule "Externals/Vulkan-Headers"] path = Externals/Vulkan-Headers url = https://github.com/KhronosGroup/Vulkan-Headers.git + shallow = true [submodule "Externals/watcher/watcher"] path = Externals/watcher/watcher url = https://github.com/e-dant/watcher.git + shallow = true [submodule "Externals/SFML/SFML"] path = Externals/SFML/SFML url = https://github.com/SFML/SFML.git + shallow = true [submodule "Externals/zstd/zstd"] path = Externals/zstd/zstd url = https://github.com/facebook/zstd.git + shallow = true [submodule "Externals/miniupnpc/miniupnp"] path = Externals/miniupnpc/miniupnp url = https://github.com/miniupnp/miniupnp.git + shallow = true From 4788af92bcbfc27f75dbc0932674cd20051d53f7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Joshua=20Vanda=C3=ABle?= Date: Thu, 10 Jul 2025 20:51:50 +0200 Subject: [PATCH 3/3] .gitmodules: Update URLs for lz4, hidapi, and minizip-ng submodules to include .git extension --- .gitmodules | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.gitmodules b/.gitmodules index 4403532b55..08946ca73c 100644 --- a/.gitmodules +++ b/.gitmodules @@ -64,7 +64,7 @@ shallow = true [submodule "Externals/lz4/lz4"] path = Externals/lz4/lz4 - url = https://github.com/lz4/lz4 + url = https://github.com/lz4/lz4.git shallow = true [submodule "Externals/xxhash/xxHash"] path = Externals/xxhash/xxHash @@ -76,7 +76,7 @@ shallow = true [submodule "hidapi-src"] path = Externals/hidapi/hidapi-src - url = https://github.com/libusb/hidapi + url = https://github.com/libusb/hidapi.git shallow = true [submodule "Externals/tinygltf/tinygltf"] path = Externals/tinygltf/tinygltf @@ -84,7 +84,7 @@ shallow = true [submodule "Externals/minizip-ng/minizip-ng"] path = Externals/minizip-ng/minizip-ng - url = https://github.com/zlib-ng/minizip-ng + url = https://github.com/zlib-ng/minizip-ng.git shallow = true [submodule "Externals/Vulkan-Headers"] path = Externals/Vulkan-Headers