From 765b0bb936cbd709305d741b6ddb97dcee58e596 Mon Sep 17 00:00:00 2001 From: Viet Tran Date: Wed, 3 Dec 2025 10:21:41 +0700 Subject: [PATCH] docs: add git workflow rules to CLAUDE.md (#9) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Never push directly to main - Always create branch and PR 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-authored-by: Claude --- CLAUDE.md | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/CLAUDE.md b/CLAUDE.md index e59c359..e747e15 100644 --- a/CLAUDE.md +++ b/CLAUDE.md @@ -56,3 +56,12 @@ When modifying files, keep all agent workflows in sync: ## Prerequisites 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 ` +4. Create PR: `gh pr create`