From 81990f029249e4b29633aabfb3c42f4ea08c3f1f Mon Sep 17 00:00:00 2001 From: lucaronin Date: Mon, 2 Mar 2026 12:03:31 +0100 Subject: [PATCH] =?UTF-8?q?docs:=20never=20open=20PRs=20=E2=80=94=20push?= =?UTF-8?q?=20directly=20to=20main=20always?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- CLAUDE.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/CLAUDE.md b/CLAUDE.md index a2039520..a076ebb9 100644 --- a/CLAUDE.md +++ b/CLAUDE.md @@ -140,6 +140,9 @@ The pre-push hook runs all checks locally before the push goes through. This rep git push origin main # pre-push hook runs automatically ``` +### ⛔ NEVER open a Pull Request +PRs on separate branches diverge from main with every merge, requiring continuous rebases and creating unnecessary conflicts. Always push directly to main. If the push fails (disk full, test failure, etc.) — fix the problem, then push again. There is no scenario where opening a PR is the right fallback. + ### ⛔ NEVER use --no-verify ```bash # FORBIDDEN — will be caught and rejected: