vpukhanov / git-local-ignore

Locally exclude files from being tracked by Git (without adding them to .gitignore)

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

git-local-ignore

This command-line utility lets you manipulate .git repository's info/exclude file, which works like .gitignore but is completely local and not included in the repository itself.

Learn more about .git/info/exclude

Installation

cargo install git-local-ignore

Or using brew on macOS:

brew install vpukhanov/tools/git-local-ignore

Usage

# 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

About

Locally exclude files from being tracked by Git (without adding them to .gitignore)

License:Apache License 2.0


Languages

Language:Rust 100.0%