Git commits style
- ADD: a list of new files — description of added functionality
ADD: authorize.py - add google auth
- UPDATE: list of changed files (most important) — list of changes
UPDATE: aythorize.py — change google auth to discord, delete get_ip method
- DELETE: list of deleted files (most important) — reason
DELETE: aythorize.py — it's deprecated logic
- FIX: bug name — describe reason
FIX: discord auth cycle — invalid token
- RELEASE: version — most changes
RELEASE: v0.1.2 — add (discord, google auth), improve load perfomance
Recommendations
- 1 action = 1 commit
- More commits are better than none
- Commit must not include many changes
- Good commit name helps avoid confusion