A tool that reminds you to commit with the correct email address
commit-email is available on the AUR. Afterwards add the shell script to your shell configuration.
Use cargo to install commit-email.
sh
cargo install commit-email
Afterwards add the shell script to your shell configuration.
This script runs commit-email every time you run git commit
.
sh
function git() {
if [ "$1" = "commit" ]
then
# Path to commit-email binary
/usr/bin/commit-email
fi;
command git $@
}
If you want do adjust the config file for the commit-email
tool, you will find the configs in the following path ~/.config/commit-email/commit-email.toml
(linux).
```toml
ignore = []
emails = [ 'email@example.com', 'email2@example.com' ] ```
The tool will also use your global git email, if set (e.g. in your global .gitconfig
).