Skip to content

Latest commit

 

History

History
31 lines (26 loc) · 1.48 KB

guia_de_commits.md

File metadata and controls

31 lines (26 loc) · 1.48 KB

access-control-project

Conventions

  1. Semantic commit messages
  • feat: (new feature for the user, not a new feature for build script)
  • fix: (bug fix for the user, not a fix to a build script)
  • ci: (changes to our CI configuration files and scripts)
  • chore: (updating grunt tasks etc; no production code change)
  • docs: (changes to the documentation)
  • test: (adding missing tests, refactoring tests; no production code change)
  • style: (formatting, missing semi colons, etc; no production code change)
  • refactor: (refactoring production code, eg. renaming a variable)
  • perf: (a code change that improves performance)
  • build: (changes that affect the build system or external dependencies)
  • revert: (reverts a previous commit)
  • hotfix: (immediate rectification or upgrade of already deployed software)
  1. Git branch naming conventions
  • all lowercase
  • only dashes (-) to separate words
  • [author name]/[feat | fix | ci | chore | docs | test | style | refactor | perf | build | revert | hotfix]/[description in dash case]
  • please keep it short
  1. Pull Request naming conventions Please follow the following syntax [feat | fix | ci | chore | docs | test | style | refactor | perf | build | revert | hotfix]: description

  2. Keeping git commits small, meaningful and limited to just one change. If you have more changes in your Merge request, create separate commit for each one.


This application was created by students of Alpha Edtech®