Code Commit

Commit code changes with well-structured messages following Conventional Commits. Use when ready to commit after implementation or bug fix.

LuizEduPP d79f4ab 950 B Updated

File contents

Code Commit

Create well-structured git commits with meaningful messages.

Format

<type>(<scope>): <subject>

<body>

<footer>

Types

Type Use For
feat New feature
fix Bug fix
docs Documentation
refactor Code restructuring
test Adding tests
chore Maintenance

Examples

feat(auth): add user login functionality

Implement JWT-based authentication with:
- Login endpoint
- Token validation

Closes #123
fix(api): handle null response in user query

Rules

  1. Atomic - One logical change per commit
  2. Present tense - "add" not "added"
  3. 50/72 - Subject ≤50, body wrapped at 72
  4. Reference issues - Closes #123 or Fixes #456

LuizEduPP/skills/tree/main/code-commit commit d79f4abd65

Frequently asked questions

npx skillmds@latest add luizedupp/code-commit