diff --git a/Git-Workflow.md b/Git-Workflow.md index 6c5c671..e2f6272 100644 --- a/Git-Workflow.md +++ b/Git-Workflow.md @@ -1,3 +1,22 @@ # Commit messages -[Conventional Commits](https://gist.github.com/qoomon/5dfcdf8eec66a051ecd85625518cfd13) \ No newline at end of file +Alle commit message müssen [Conventional Commits](https://gist.github.com/qoomon/5dfcdf8eec66a051ecd85625518cfd13) sein. + +Erlaubte typen sind: +- *feat* -> Feature added +- *fix* -> Fixed a bug +- *test* -> Modified or added tests +- *docs* -> Modified documentation +- *chore* -> changes to non code files (workflows, lock files, ...) +- *refactor* -> rewritten code without changing functionality +- *style* -> code style (yarn format) +- *revert* -> reverts a previous commit + +# Branch names + +Die branches werden nach einem zugehörigen issue benannt. +`/-` + +# Issue name + +Die Issues werden auch wir conventional commits benannt. \ No newline at end of file