Git guideline

Write meaningful commit messages

Example subject lines:

Sources:

Useful verbs for commit messages

Prepare changes in a new branch

Branch name format:

reason__details--tag

Reasons are feature/fix/enhancement/refactor/upgrade etc.

enchance: intensify, increase, or further improve the quality, value, or extent of, to raise to a higher degree

upgrade: raise (something) to a higher standard, in particular improve (equipment or machinery) by adding or replacing components.

Example:

feature__wonderful-hallo-API

More info

Commands I like

patch workflow

 git format-patch -o /tmp/ HEAD~

Branching models

Trunk based development with git

#teamwork