#git-history #copyright #notes #times #repository #add-update

bin+lib git_copyright

Add/update copyright notes based on git history

2 releases

0.2.7 Mar 19, 2022
0.2.4 Mar 12, 2022
0.1.0 Mar 7, 2022

#13 in #copyright

Download history 13/week @ 2024-02-22 7/week @ 2024-02-29 2/week @ 2024-03-07 3/week @ 2024-03-14 39/week @ 2024-03-28 31/week @ 2024-04-04

70 downloads per month

Custom license

26KB
604 lines

git_copyright

Extract added/last modified times from git history and add/update copyright notes accordingly.

Installation

The easiest way to install git_copyright is via cargo from crates.io:

cargo install git_copyright

If you want to build it from source, clone the repository and then run:

cargo build --release

Running

The only required argument is the name that your copyright should carry, e.g.:

git_copyright --name "MyCompany Ltd."

Additional useful arguments:

  • --repo: Specify a repo-root other than ./.
  • --config: Pass your own YAML config file with comment signs and glob patterns to ignore.
  • --ignore-changes: Do not exit with an error even if tracked files changed.

A full command might look like this:

git_copyright --name "MyCompany Ltd." --repo "../../my_repo" --config "./custom_cfg.yml" --ignore-changes

Run with Docker

You can also use a pre-built image:

docker run --rm -u $(id -u) -v $(pwd):/mnt sgasse/git_copyright:v0.2.7 --name "MyCompany Ltd."

Development

When developing, you can set the log environment variable to see debug log output:

RUST_LOG=debug cargo run -- --repo "../../my_repo" --name "MyCompany Ltd."

Dependencies

~9–22MB
~269K SLoC