From be8c8e5678168b28234eca80406c0ab3c75eb323 Mon Sep 17 00:00:00 2001 From: Mark Bennett Date: Tue, 17 Feb 2026 20:37:07 -0700 Subject: [PATCH] Add directions for using git --- CLAUDE.md | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/CLAUDE.md b/CLAUDE.md index fcb521a..4b9a83f 100644 --- a/CLAUDE.md +++ b/CLAUDE.md @@ -57,3 +57,10 @@ vi.mock('../../src/lib/issues-api.js'); // Use importOriginal to preserve exported classes/errors if needed ``` `isAuthenticated()` is synchronous — mock as `vi.fn(() => true)`, not `vi.fn(async () => true)`. + +### Version Control + +* Use small meaningful commits with clear messages. +* Break work down into logical steps, committing each step separately. +* Use feature branches when addressing issues. Include the issue number and a description of changes in the branch name (e.g., `issue-123-fix-auth`). +* When work is complete push commits to remote and open a pull request for review. Include the issue number and a description of changes in the PR title (e.g., `Fix authentication flow for issue #123`). -- 2.51.2