#commit #correct #address #configuration #reminds

app commit-email

一个提醒您使用正确电子邮件地址提交的工具

3 个不稳定版本

0.2.1 2024年3月6日
0.2.0 2021年11月16日
0.1.0 2021年4月27日

电子邮件类别中排名第51

Download history 50/week @ 2024-03-07 3/week @ 2024-03-14 18/week @ 2024-03-28 17/week @ 2024-04-04

每月下载量53

MIT授权

14KB
298行(不含注释)

commit-email

一个提醒您使用正确电子邮件地址提交的工具

安装

Arch Linux

commit-email在AUR上可用。之后将shell脚本添加到您的shell配置中。

其他

使用cargo安装commit-email。

cargo install commit-email

之后将shell脚本添加到您的shell配置中。

Shell脚本

此脚本在您每次运行git commit时运行commit-email。

function git() {
  if [ "$1" = "commit" ]
  then
    # Path to commit-email binary (Arch)
    /usr/bin/commit-email
    # Path to commit-email binary (Cargo)
    # $HOME/.cargo/bin/commit-email
  fi;
  command git $@
}

配置

如果您想调整commit-email工具的配置文件,您可以在以下路径找到配置:~/.config/commit-email/commit-email.toml(Linux)。

# List of repo urls where the tool will not set a commit email
ignore = []

# Emails the tool will use
emails = [
    '[email protected]',
    '[email protected]'
]

如果设置了,该工具还会使用您的全局git电子邮件(例如,在全局.gitconfig中)。

依赖关系

~17–29MB
~474K SLoC