From 73702204977d36ad7351ad8deb47031b6719331e Mon Sep 17 00:00:00 2001 From: agentson Date: Sun, 8 Feb 2026 16:03:41 +0900 Subject: [PATCH] Require rebase after creating feature branch --- docs/workflow.md | 1 + 1 file changed, 1 insertion(+) diff --git a/docs/workflow.md b/docs/workflow.md index 3ef1d11..7222c2c 100644 --- a/docs/workflow.md +++ b/docs/workflow.md @@ -6,6 +6,7 @@ 1. **Create Gitea Issue First** — All features, bug fixes, and policy changes require a Gitea issue before any code is written 2. **Create Feature Branch** — Branch from `main` using format `feature/issue-{N}-{short-description}` + - After creating the branch, run `git pull origin main` and rebase to ensure the branch is up to date 3. **Implement Changes** — Write code, tests, and documentation on the feature branch 4. **Create Pull Request** — Submit PR to `main` branch referencing the issue number 5. **Review & Merge** — After approval, merge via PR (squash or merge commit)