summaryrefslogtreecommitdiffstats
path: root/tools/git-setup.sh
diff options
context:
space:
mode:
Diffstat (limited to 'tools/git-setup.sh')
-rwxr-xr-xtools/git-setup.sh18
1 files changed, 0 insertions, 18 deletions
diff --git a/tools/git-setup.sh b/tools/git-setup.sh
index 8cc1bfdfc2..b5903b4ca1 100755
--- a/tools/git-setup.sh
+++ b/tools/git-setup.sh
@@ -4,12 +4,6 @@ set -eu
cd "${MESON_SOURCE_ROOT:?}"
-if [ -e .git ]; then
- git config submodule.recurse true
- git config fetch.recurseSubmodules on-demand
- git config push.recurseSubmodules no
-fi
-
ret=2
if [ -f .git/hooks/pre-commit.sample ] && [ ! -f .git/hooks/pre-commit ]; then
@@ -19,16 +13,4 @@ if [ -f .git/hooks/pre-commit.sample ] && [ ! -f .git/hooks/pre-commit ]; then
ret=0
fi
-if [ ! -f .git/hooks/post-rewrite ]; then
- cp -p tools/git-submodule-update-hook.sh .git/hooks/post-rewrite
- echo 'Activated post-rewrite hook'
- ret=0
-fi
-
-if [ ! -f .git/hooks/post-checkout ]; then
- cp -p tools/git-submodule-update-hook.sh .git/hooks/post-checkout
- echo 'Activated post-checkout hook'
- ret=0
-fi
-
exit $ret