- 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