See how a minor change to your commit message style can make a difference. Examples
Have a look at CLI util git-conventional-commits to ensure this conventions and generate changelogs
| #!/usr/bin/env python3 | |
| import subprocess | |
| from datetime import datetime | |
| import pyperclip | |
| # Define the changelog file path | |
| changelog_file = "changelog-result.md" | |
| # Git command to get the branch creation date |
See how a minor change to your commit message style can make a difference. Examples
Have a look at CLI util git-conventional-commits to ensure this conventions and generate changelogs