git-workflow

Git Workflow Best Practices

Safety Notice

This listing is imported from skills.sh public index metadata. Review upstream SKILL.md and repository scripts before running.

Copy this and send it to your AI assistant to learn

Install skill "git-workflow" with this command: npx skills add kprsnt2/mylocalcli/kprsnt2-mylocalcli-git-workflow

Git Workflow Best Practices

Commit Messages (Conventional Commits)

  • feat: New feature

  • fix: Bug fix

  • docs: Documentation

  • style: Formatting

  • refactor: Code restructuring

  • test: Adding tests

  • chore: Maintenance

Format: type(scope): description Example: feat(auth): add password reset flow

Branch Naming

  • feature/TICKET-description

  • fix/TICKET-description

  • hotfix/description

  • release/v1.0.0

  • docs/description

Workflow

  • Keep commits atomic and focused

  • Rebase feature branches on main

  • Squash WIP commits before merge

  • Never force push to shared branches

  • Use pull request templates

  • Require code reviews

.gitignore

  • Ignore build artifacts

  • Ignore node_modules, venv, target

  • Ignore local config (.env.local)

  • Ignore IDE settings (.idea, .vscode)

  • Ignore OS files (.DS_Store)

Advanced

  • Use git hooks with husky/pre-commit

  • Sign commits with GPG

  • Use git-crypt for secrets

  • Bisect for finding bugs

Source Transparency

This detail page is rendered from real SKILL.md content. Trust labels are metadata-based hints, not a safety guarantee.

Related Skills

Related by shared tags or category signals.

Coding

redis

No summary provided by upstream source.

Repository SourceNeeds Review
Coding

testing

No summary provided by upstream source.

Repository SourceNeeds Review
Coding

sql

No summary provided by upstream source.

Repository SourceNeeds Review