See how a minor change to your commit message style can make a difference.
git commit -m"<type>(<optional scope>): <description>" \ -m"<optional body>" \ -m"<optional footer>"
#!/usr/bin/env python3 | |
# -*- coding: utf-8 -*- | |
# Copyright (c) 2025 Ash <[email protected]> | |
# This file is released under MIT license | |
"""This script accepts a suno username and will download all public songs found.""" | |
from argparse import ArgumentParser, Namespace | |
from datetime import datetime | |
from enum import Enum | |
from json import loads |
See how a minor change to your commit message style can make a difference.
git commit -m"<type>(<optional scope>): <description>" \ -m"<optional body>" \ -m"<optional footer>"