docs: add git workflow rules to CLAUDE.md (#9)

- Never push directly to main
- Always create branch and PR

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-authored-by: Claude <noreply@anthropic.com>
This commit is contained in:
Viet Tran 2025-12-03 10:21:41 +07:00 committed by GitHub
parent 2e7acbf50f
commit 765b0bb936
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 9 additions and 0 deletions

View File

@ -56,3 +56,12 @@ When modifying files, keep all agent workflows in sync:
## Prerequisites ## Prerequisites
Python 3.x (no external dependencies required) Python 3.x (no external dependencies required)
## Git Workflow
Never push directly to `main`. Always:
1. Create a new branch: `git checkout -b feat/... ` or `fix/...`
2. Commit changes
3. Push branch: `git push -u origin <branch>`
4. Create PR: `gh pr create`