Skip to content

Commit 8846996

Browse files
Add git workflow guidelines to CLAUDE.md
Added critical rule: never commit directly to master branch, always create feature branches and PRs. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
1 parent 64b375e commit 8846996

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

CLAUDE.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,15 @@ The project supports different cursor implementations for various use cases:
3030

3131
## Development Guidelines
3232

33+
### Git Workflow
34+
35+
**CRITICAL: Never Commit Directly to Master Branch**
36+
- **NEVER** commit directly to the `master` branch
37+
- **ALWAYS** create a feature branch for any changes
38+
- **ALWAYS** create a Pull Request (PR) for review
39+
- Use descriptive branch names (e.g., `feature/add-converter`, `fix/null-handling`)
40+
- Create PRs as drafts using `gh pr create --draft`
41+
3342
### Code Style and Quality
3443

3544
#### Import Guidelines

0 commit comments

Comments
 (0)