From a720cb3f4b9606d01065fed7fde0f2f457653e63 Mon Sep 17 00:00:00 2001 From: jaOxZ <18682943297@163.com> Date: Thu, 26 May 2022 13:47:47 +0800 Subject: [PATCH] Update .gitmodules (#12958) some error happens when use "git submodule update --init --recursive" to clone submodules , and then I found some url of submodule is not a git clone url end with .git --- .gitmodules | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.gitmodules b/.gitmodules index 5520c9b918..8179b9caa5 100644 --- a/.gitmodules +++ b/.gitmodules @@ -6,13 +6,13 @@ url = https://github.com/taosdata/hivemq-tdengine-extension.git [submodule "deps/jemalloc"] path = deps/jemalloc - url = https://github.com/jemalloc/jemalloc + url = https://github.com/jemalloc/jemalloc.git [submodule "src/kit/taos-tools"] path = src/kit/taos-tools - url = https://github.com/taosdata/taos-tools + url = https://github.com/taosdata/taos-tools.git [submodule "src/plugins/taosadapter"] path = src/plugins/taosadapter - url = https://github.com/taosdata/taosadapter + url = https://github.com/taosdata/taosadapter.git [submodule "examples/rust"] path = examples/rust url = https://github.com/songtianyi/tdengine-rust-bindings.git -- GitLab