Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 493 Bytes

CONTRIBUTING.md

File metadata and controls

29 lines (20 loc) · 493 Bytes

Gitflow

  • Checkout a new branch in your repo, use folder before, accordingly to branch intentions and the key after slash.
   git checkout -b hotfix/FE#1
  • Available folders names:

    • hotfix
    • feature
    • develop
  • When committing changes to your branch, use the key at the beginning of your commit message.

   git commit -m "FE#1 some message"
  • Merging with main branch. For example:
  git checkout main
  git merge hotfix/FE#1