Now liveThe Skillselion MCP - thousands of ranked skills, loaded into your agent mid-task. No install.Get it →
laurigates avatar

Git Branch Naming

  • 69 installs
  • 49 repo stars
  • Updated August 4, 2026
  • laurigates/claude-plugins

Helps with ai & agent building tasks.

About

git-branch-naming is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted development.

  • git-branch-naming
  • AI & Agent Building
  • AI-coding skill

Git Branch Naming by the numbers

  • 69 all-time installs (skills.sh)
  • +1 installs in the week ending Aug 2, 2026 (Skillselion tracking)
  • Ranked #5,786 of 16,546 AI & Agent Building skills by installs in the Skillselion catalog
  • Data as of Aug 5, 2026 (Skillselion catalog sync)
npx skills add https://github.com/laurigates/claude-plugins --skill git-branch-naming

Add your badge

Show developers this skill is listed on Skillselion. Paste this into your README.

Listed on Skillselion
Installs69
repo stars49
Last updatedAugust 4, 2026
Repositorylaurigates/claude-plugins

What it does

Helps with ai & agent building tasks.

Files

SKILL.mdMarkdownGitHub ↗

Git Branch Naming Conventions

Consistent branch naming improves traceability, enables automation, and makes repository history easier to navigate.

When to Use This Skill

Use this skill when...Use something else when...
Creating a new feature/fix branchManaging PR workflows → git-branch-pr-workflow
Setting up team branch conventionsCommitting changes → git-commit-workflow
Discussing naming standardsRebase/merge strategies → git-branch-pr-workflow

Branch Name Format

{type}/{issue}-{short-description}
ComponentFormatRequiredExample
typeLowercase prefixYesfeat, fix
issueIssue number, no #If issue exists123
descriptionkebab-case, 2-5 wordsYesuser-authentication

Examples

# With issue number (preferred when issue exists)
feat/123-oauth-login
fix/456-null-pointer-crash
chore/789-update-dependencies
docs/101-api-reference

# Without issue number (when no issue exists)
feat/oauth-integration
fix/memory-leak-cleanup
chore/update-eslint-config
refactor/auth-service-split

Branch Types

TypePurposeConventional Commit
feat/New features, capabilitiesfeat:
fix/Bug fixesfix:
chore/Maintenance, deps, configchore:
docs/Documentation onlydocs:
refactor/Code restructuring, no behavior changerefactor:
test/Adding/updating teststest:
ci/CI/CD pipeline changesci:
hotfix/Emergency production fixesfix: (with urgency)
release/Release preparationchore: or release:

Creating Branches

Standard Workflow

# With issue number
git switch -c feat/123-user-authentication

# Without issue number
git switch -c fix/login-timeout-handling

# From specific base
git switch -c feat/456-payment-api main
git switch -c hotfix/security-patch production

Validation Pattern

Before creating, validate the format:

# Branch name regex pattern
^(feat|fix|chore|docs|refactor|test|ci|hotfix|release)/([0-9]+-)?[a-z0-9]+(-[a-z0-9]+)*$

Valid:

  • feat/123-user-auth
  • fix/memory-leak
  • chore/update-deps

Invalid:

  • feature/user-auth ✗ (use feat, not feature)
  • fix/UserAuth ✗ (use kebab-case, not PascalCase)
  • my-branch ✗ (missing type prefix)
  • feat/fix_bug ✗ (use hyphens, not underscores)

Issue Linking Best Practices

When to Include Issue Numbers

ScenarioInclude Issue?Example
Work tracked in GitHub IssuesYesfeat/123-add-oauth
Work tracked in external system (Jira, Linear)Optionalfeat/PROJ-456-oauth or feat/oauth
Exploratory/spike workNospike/auth-approaches
Quick fix without issueNofix/typo-readme
Dependabot/automated PRsNochore/bump-lodash

External Ticket Systems

For Jira, Linear, or other systems, use the ticket ID:

feat/PROJ-123-user-dashboard
fix/LINEAR-456-api-timeout
chore/JIRA-789-update-sdk

Description Guidelines

Good Descriptions

PatternExampleWhy Good
Action + Targetadd-oauth-loginClear what's being done
Component + Changeauth-service-refactorIdentifies affected area
Bug + Contextnull-pointer-user-saveDescribes the issue

Avoid

Anti-patternProblemBetter
fix/bugToo vaguefix/123-login-validation
feat/new-featureMeaninglessfeat/user-dashboard
feat/john-working-on-stuffNot descriptivefeat/456-payment-flow
fix/issue-123Redundant, no descriptionfix/123-timeout-error
feat/add-new-user-authentication-system-with-oauthToo longfeat/oauth-authentication

Length Guidelines

  • Minimum: 2 words after type/issue (feat/123-user-auth)
  • Maximum: 5 words, ~50 characters total
  • Sweet spot: 3-4 words (feat/123-oauth-token-refresh)

Special Branch Patterns

Release Branches

release/1.0.0
release/2.1.0-beta
release/v3.0.0-rc1

Hotfix Branches

hotfix/security-vulnerability
hotfix/critical-data-loss
hotfix/production-crash-fix

Long-Running Branches

For multi-week efforts, consider date suffix:

feat/123-major-refactor-2026q1
epic/new-billing-system

Team Conventions

User-Prefixed Branches (Optional)

For large teams where branch ownership matters:

# Pattern: {user}/{type}/{description}
alice/feat/123-oauth
bob/fix/456-memory-leak

# Or: {type}/{user}-{description}
feat/alice-oauth-integration
fix/bob-memory-leak

Protected Branch Patterns

Configure branch protection for:

main
master
develop
release/*
hotfix/*

Automation Integration

Branch Name → Commit Scope

The branch type can inform commit message scope:

BranchSuggested Commits
feat/123-authfeat(auth): ...
fix/456-apifix(api): ...
docs/readmedocs: ...

CI/CD Triggers

Common patterns for CI pipeline triggers:

# GitHub Actions example
on:
  push:
    branches:
      - 'feat/**'
      - 'fix/**'
      - 'hotfix/**'
  pull_request:
    branches:
      - main

Quick Reference

Branch Creation Checklist

  • [ ] Starts with valid type prefix (feat/, fix/, etc.)
  • [ ] Issue number included (if tracked work)
  • [ ] Description is kebab-case
  • [ ] Description is 2-5 words
  • [ ] Total length under 50 characters
  • [ ] No underscores, spaces, or uppercase

Command Reference

ActionCommand
Create branchgit switch -c feat/123-description
List by typegit branch --list 'feat/*'
Delete localgit branch -d feat/123-description
Delete remotegit push origin --delete feat/123-description
Renamegit branch -m old-name new-name

Type Selection Flowchart

Is it a bug fix? → fix/
Is it a new capability? → feat/
Is it documentation? → docs/
Is it maintenance/deps? → chore/
Is it restructuring code? → refactor/
Is it adding tests? → test/
Is it CI/CD changes? → ci/
Is it an emergency? → hotfix/

Related skills

This week in AI coding

Five minutes, every Monday - the tools, releases and tactics for developers.

unsubscribe anytime.