git-owners

A git subcommand to query and validate CODEOWNERS.

List owners of files based on the CODEOWNERS of the current repository.

```

git owners src/main.rs src/main.rs @weyland ```

```

git owners git ls-files .gitignore (unowned) Cargo.lock @weyland Cargo.toml @weyland LICENSE (unowned) README.md @weyland src/main.rs @weyland ```

```

oops, did the last commit add some unowned files?

git diff --name-only --diff-filter=A | git owners .gitignore (unowned) LICENSE (unowned) ```

```

I need stats about my big monorepo

echo git ls-files | git owners | grep "(unowned)"| wc -l out of git ls-files | git owners | wc -l files in this repository do not have a corresponding CODEOWNERS entry 2 out of 6 files in this repository do not have a corresponding CODEOWNERS entry ```

Installation

Usage

Features

Issues & Contributing

If you have any questions or problems, feel free to communicate using Github Issues.