<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">"""usage: git commit [options] [--] [&lt;filepattern&gt;...]

    -h, --help
    -q, --quiet           suppress summary after successful commit
    -v, --verbose         show diff in commit message template

Commit message options
    -F, --file &lt;file&gt;     read message from file
    --author &lt;author&gt;     override author for commit
    --date &lt;date&gt;         override date for commit
    -m, --message &lt;message&gt;
                          commit message
    -c, --reedit-message &lt;commit&gt;
                          reuse and edit message from specified commit
    -C, --reuse-message &lt;commit&gt;
                          reuse message from specified commit
    --fixup &lt;commit&gt;      use autosquash formatted message to fixup specified commit
    --squash &lt;commit&gt;     use autosquash formatted message to squash specified commit
    --reset-author        the commit is authored by me now
                          (used with -C-c/--amend)
    -s, --signoff         add Signed-off-by:
    -t, --template &lt;file&gt;
                          use specified template file
    -e, --edit            force edit of commit
    --cleanup &lt;default&gt;   how to strip spaces and #comments from message
    --status              include status in commit message template

Commit contents options
    -a, --all             commit all changed files
    -i, --include         add specified files to index for commit
    --interactive         interactively add files
    -o, --only            commit only specified files
    -n, --no-verify       bypass pre-commit hook
    --dry-run             show what would be committed
    --short               show status concisely
    --branch              show branch information
    --porcelain           machine-readable output
    -z, --null            terminate entries with NUL
    --amend               amend previous commit
    --no-post-rewrite     bypass post-rewrite hook
    -u, --untracked-files=&lt;mode&gt;
                          show untracked files, optional modes: all, normal, no.
                          [default: all]

"""
from docopt import docopt


if __name__ == '__main__':
    print(docopt(__doc__))
</pre></body></html>