mirror of
https://github.com/systemd/systemd.git
synced 2024-12-22 17:35:35 +03:00
f1e9e8041c
git rebase does not support a --recurse-submodules switch to automatically check out the submodules at their registered commits during or after a rebase. Instead, let's use the post-rewrite git hook to do this ourselves.
29 lines
649 B
Bash
Executable File
29 lines
649 B
Bash
Executable File
#!/bin/sh
|
|
# SPDX-License-Identifier: LGPL-2.1-or-later
|
|
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
|
|
cp -p .git/hooks/pre-commit.sample .git/hooks/pre-commit
|
|
chmod +x .git/hooks/pre-commit
|
|
echo 'Activated pre-commit hook'
|
|
ret=0
|
|
fi
|
|
|
|
if [ ! -f .git/hooks/post-rewrite ]; then
|
|
cp -p tools/git-post-rewrite-hook.sh .git/hooks/post-rewrite
|
|
echo 'Activated post-rewrite hook'
|
|
ret=0
|
|
fi
|
|
|
|
exit $ret
|