Accropoly - A Low Poly 3D city building game.
Create (feature-)branches from main and merge them after finishing the feature and testing it. Only important bugfixes should be done directly on main.
https://www.freecodecamp.org/news/how-to-write-better-git-commit-messages/
- title: ": "
- type & description in lowercase, no punctuation
- imperative mood
- title no longer than 50 chars, description no longer than 72 chars
- titles:
- feature: a new feature is introduced
- fix: A bug fix has occured
- refactor: refactored code that neither fixes a bug nor adds a feature
- chore: changes that do not relate to a fix or feature and don't modify src or test files (for example updating dependencies)
- docs: updates to documentation such as a the README or other markdown files
- style: formatting, comments, ...
- perf: performance improvements
- build: changes that affect the build system or external dependencies
- revert: reverts a previous commit
- ressource: new or updated ressources (images, fonts, ...)
This ensures that commit messages are consistent and helpful


