From aa97bf1662698da142ceceddb46832ee4830077c Mon Sep 17 00:00:00 2001 From: doujiang24 Date: Mon, 12 May 2025 09:16:37 +0800 Subject: [PATCH] gitmodules: use full path instead of relative path. (#345) It will be more friendly when people forked in a private repo instead of github. Signed-off-by: doujiang24 --- .gitmodules | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitmodules b/.gitmodules index 062cc71e..aecfec5a 100644 --- a/.gitmodules +++ b/.gitmodules @@ -1,4 +1,4 @@ [submodule "extern/pybind11"] path = extern/pybind11 - url = ../../pybind/pybind11 + url = https://github.com/pybind/pybind11.git branch = stable