summaryrefslogtreecommitdiffstats
path: root/tools
diff options
context:
space:
mode:
authorDaan De Meyer <daan.j.demeyer@gmail.com>2024-03-14 10:29:55 +0100
committerDaan De Meyer <daan.j.demeyer@gmail.com>2024-03-15 17:27:49 +0100
commit6233a769327d8a1e7247ce741569752ffcf09144 (patch)
tree6d2068839e3f7a7dc0b20a3fa50faebddf6e0dbd /tools
parentdocs: Update HACKING guide with recommended git config (diff)
downloadsystemd-6233a769327d8a1e7247ce741569752ffcf09144.tar.xz
systemd-6233a769327d8a1e7247ce741569752ffcf09144.zip
meson: Rename add-git-hook.sh to git-setup.sh and configure git in it
Let's automatically apply the recommended git config with meson.
Diffstat (limited to 'tools')
-rwxr-xr-xtools/git-setup.sh (renamed from tools/add-git-hook.sh)5
1 files changed, 5 insertions, 0 deletions
diff --git a/tools/add-git-hook.sh b/tools/git-setup.sh
index 8cff62e864..2f7be5ccd6 100755
--- a/tools/add-git-hook.sh
+++ b/tools/git-setup.sh
@@ -4,6 +4,11 @@ set -eu
cd "${MESON_SOURCE_ROOT:?}"
+if [ -e .git ]; then
+ git config submodule.recurse true
+ git config fetch.recurseSubmodules on-demand
+fi
+
if [ ! -f .git/hooks/pre-commit.sample ] || [ -f .git/hooks/pre-commit ]; then
exit 2 # not needed
fi