At the Python SDK we require commits to be descriptive and conventionally named in order to keep helpful records.
A descriptive commit is one that summarises in words what was just commited.
This is correct:
git commit -S -s -m "fix: fixed receipt status error catching in get_name"This is incorrect:
git commit -S -s -m "looks like its mostly working now"Read about conventional commit messages here: Conventional Commits
This is correct:
git commit -S -s -m "chore: changelog entry to TokenCreateTransaction"This is incorrect:
git commit -S -s -m "feat: changelog entry to TokenCreateTransaction"This is incorrect:
git commit -S -s -m "changelog entry to TokenCreateTransaction"