Skip to content

Instantly share code, notes, and snippets.

@dan987
Created July 16, 2021 16:50
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dan987/316523442cb11deb55f81d21f21a8d0e to your computer and use it in GitHub Desktop.
Save dan987/316523442cb11deb55f81d21f21a8d0e to your computer and use it in GitHub Desktop.
Common Practice Gitflow

Main Branches

  • Master (Main)
  • dev
  • review
  • staging

From master git checkout dev

feature branch naming convention git checkout -b feature/add-items-to-closet bug branch git checkout -b bug/add-items-to-closet maintence git checkout -b maintence/add-items-to-closet chore git checkout -b chore/add-items-to-closet config git checkout -b config/add-items-to-closet

git commit -m "added attributes to item model ✨ "

git commit -m "validation error fix 🐛"

https://gitmoji.dev/

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment