Skip to content

Instantly share code, notes, and snippets.

@ggwzrd
Last active October 4, 2022 15:10
Show Gist options
  • Save ggwzrd/c757e85ce3b01ece58fcc497ccd636d4 to your computer and use it in GitHub Desktop.
Save ggwzrd/c757e85ce3b01ece58fcc497ccd636d4 to your computer and use it in GitHub Desktop.
A short and simple way of consistently naming your branches

Syntax

<type>/<title>

Example

fix/auth-token-not-found

feat/sign-up-flow

chore/update-github-config

Explanation

<type>

fix   - Code changes linked to a known issue
feat  - New feature
chore - Code refactoring, small changes

<name>

  • Use kebab-case
  • Keep it concise
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment