Skip to content

Commit a9db2d5

Browse files
authored
update claude.md (#139)
* update claude.md * more changes
1 parent d585abc commit a9db2d5

1 file changed

Lines changed: 1 addition & 11 deletions

File tree

CLAUDE.md

Lines changed: 1 addition & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -81,21 +81,11 @@ When given a GitHub issue to solve, follow this workflow:
8181
2. **Implement the solution** following the existing code patterns and conventions
8282
3. **Run tests** to ensure nothing is broken: `pytest`
8383
4. **Run linting/formatting**: `ruff check --fix --select I && ruff format`
84-
5. **Commit changes** with a descriptive message referencing the issue
85-
6. **Push the branch** to origin to automatically open a PR with a descriptive body message (1 sentence describing what the PR does and referencing the issue if applicable, e.g., "Adds a 'Log scale X-axis' checkbox to the sidebar below the X-axis dropdown, which implements log scale functionality for all plots when checkbox is enabled. Closes: #121")
84+
5. That's it. Never use the `git` commit command after a task is finished.
8685

8786
### Git Commands for Issue Workflow
8887
```bash
89-
# Create and switch to new branch
9088
git checkout -b fix-issue-NUMBER
91-
92-
# After implementing changes, add and commit
93-
git add -A
94-
git commit -m "Fix issue #NUMBER: Brief description"
95-
96-
# Push branch and create PR with descriptive body
97-
git push -u origin fix-issue-NUMBER
98-
gh pr create --title "Fix issue #NUMBER: Brief description" --body "One sentence describing what the PR does and closes: #NUMBER"
9989
```
10090

10191
Always ensure tests pass and code is formatted before pushing.

0 commit comments

Comments
 (0)