Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 19 additions & 2 deletions CLAUDE.md
Original file line number Diff line number Diff line change
Expand Up @@ -88,9 +88,26 @@ src/

## Git

- `main` — production, `develop` — active development
- PR target: `main`
- `prod` — production, `develop` — active development
- PR target: `prod`
- Commit messages: conventional commits — `type(scope): description` (e.g. `fix(timeline):`, `feat(export):`)
- **Always fetch and pull before branching:**
```bash
git fetch origin
git checkout prod
git pull origin prod
```
- **Create feature branches from up-to-date `prod`:**
```bash
git checkout -b feature/<description> prod
```
- **Branch naming:** `feature/*`, `fix/*`, `chore/*`
- **Rebase before pushing:**
```bash
git fetch origin
git rebase origin/prod
```
- **Never commit directly to `prod` or `develop`** — always use feature branches + PRs

## Gotchas

Expand Down