2 Git Setup
Benjamin Goisser edited this page 2026-06-14 23:14:55 +02:00

Git Setup

Hooks

To enable the git hooks in this repository, navigate to it and run

git config core.hooksPath .githooks

Rebase on Pull

To rebase on pull, which is the preferred method instead of merge, set

git config pull.rebase true

If you then need to pull, and a rebase is not possible, run

git pull --no-rebase