From 2a6fcd915c64214c5d427068e17f190803a8d85f Mon Sep 17 00:00:00 2001 From: Erich Blume Date: Wed, 14 Jan 2026 12:00:00 -0800 Subject: [PATCH] Add reminder to always branch from main Prevents accidentally including commits from other feature branches. Co-Authored-By: Claude Opus 4.5 --- CLAUDE.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/CLAUDE.md b/CLAUDE.md index d17ecac..dcc4054 100644 --- a/CLAUDE.md +++ b/CLAUDE.md @@ -40,7 +40,13 @@ Key hosts: Use feature branches for all changes. Do not commit directly to main. Commit often while working to preserve progress. +**IMPORTANT:** Always create feature branches from main to avoid including unrelated commits: + ```bash +# Always start from main +git checkout main +git pull + # Create a feature branch git checkout -b feature/description-of-change