From 72b1f33fe753e8c7717b6812c0e87c8b43486f9f Mon Sep 17 00:00:00 2001 From: Dominik Date: Wed, 14 May 2025 11:56:35 +0000 Subject: [PATCH] Update Git Workflow --- Git-Workflow.md | 21 ++++++++++++++++++++- 1 file changed, 20 insertions(+), 1 deletion(-) 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