Skip to content
Open
Show file tree
Hide file tree
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
22 changes: 22 additions & 0 deletions CLAUDE.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
# Creative IP

## Git Workflow

- Default branch: `main`
- **Always fetch and pull before branching:**
```bash
git fetch origin
git checkout main
git pull origin main
```
- **Create feature branches from up-to-date `main`:**
```bash
git checkout -b feature/<description> main
```
- **Branch naming:** `feature/*`, `fix/*`, `chore/*`
- **Rebase before pushing:**
```bash
git fetch origin
git rebase origin/main
```
- **Never commit directly to `main`** — always use feature branches + PRs
2 changes: 1 addition & 1 deletion tsconfig.tsbuildinfo

Large diffs are not rendered by default.