Metadata-Version: 2.1
Name: git-list-authors
Version: 0.1
Summary: Git plugin for listing authors of all commits by file.
Author: Michael Pöhn
Author-email: michael@poehn.at
Requires-Python: >=3.7,<4.0
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Description-Content-Type: text/markdown

<!--
SPDX-FileCopyrightText: 2024 Michael Pöhn <michael@poehn.at>
SPDX-License-Identifier: GPL-3.0-or-later
-->

# git-list-authors

CLI tool for listing git committers by file.

Note: since this is always scanning the full git history, expect some waiting
times when using on repositories with lots of commits.

## usage

usage and output example:

```
$ git list-authors README.md some/other.file

README.md:
    2020 Carl Contributor <carl@example.com>
    2021 Grammer Prof <gp@example.com>

some/other.file:
    2020 Carl Contributor <carl@example.com>

```

