2 个版本 (1 个稳定版)
1.0.0 | 2021 年 3 月 17 日 |
---|---|
0.1.0 | 2020 年 7 月 6 日 |
#9 在 #exclude
14KB
271 行
git-local-ignore
这个命令行工具允许您操作 .git 仓库的 info/exclude
文件,它就像 .gitignore
一样工作,但它完全是局部的,并且不包括在仓库本身中。
安装
cargo install git-local-ignore
或在 macOS 上使用 brew
brew install vpukhanov/tools/git-local-ignore
用法
# Add files to exclude list
git-local-ignore filename1 filename2
# Add multiple files to exclude list using glob pattern
git-local-ignore filename*.txt
# Add glob pattern itself to exclude list
git-local-ignore filename\*.txt
# Display entries in the exclude list
git-local-ignore --list
# Clear the exclude list
git-local-ignore --clear
# Display help
git-local-ignore --help
依赖
~4–12MB
~140K SLoC