Git Workflow

Invoke before any git operations — branching, committing, merging, or creating pull requests. Contains project-specific branch naming, commit format, and merge strategy. Use when this capability is needed.

tomevault-io Updated

File contents

Git Workflow

Detected

Rules

  • Commit each logical change separately. Don't batch unrelated changes into one commit.
  • Write commit messages that explain what changed and why: feat: add input validation to signup not update files.
  • Stage specific files for each commit. Avoid git add . or git add -A — review what you're committing.

Gotchas

Not yet captured. Add as you discover them during development.

Examples

Not yet captured. Add short snippets showing the RIGHT way.


Source: anatomia-dev/anatomia — distributed by TomeVault.

tomevault-io/skills-registry/tree/main/anatomia-dev--anatomia--git-workflow commit 44a1d9df24

Frequently asked questions

npx skillmds@latest add tomevault-io/git-workflow-85