#exclude #gitignore #git #ignore #git-repository #cli

app git-local-ignore

在本地排除文件,使其不被 Git 跟踪(而不添加到 .gitignore 中)

2 个版本 (1 个稳定版)

1.0.0 2021 年 3 月 17 日
0.1.0 2020 年 7 月 6 日

#9#exclude

MIT/Apache

14KB
271

git-local-ignore

这个命令行工具允许您操作 .git 仓库的 info/exclude 文件,它就像 .gitignore 一样工作,但它完全是局部的,并且不包括在仓库本身中。

了解更多关于 .git/info/exclude 的信息

安装

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