Crates.io | kignore |
lib.rs | kignore |
version | 0.1.1 |
source | src |
created_at | 2022-10-20 23:04:04.297494 |
updated_at | 2022-10-20 23:05:27.341606 |
description | kignore is a tool for easily adding patterns to .gitignore and cleaning up afterwards |
homepage | |
repository | https://github.com/kjuulh/gitignore |
max_upload_size | |
id | 693014 |
size | 14,067 |
Is an extension for easily adding ignored files to .gitignore files
, when
added it will by default also try to remove any files matching the pattern added
to .gitignore, this is by default also run in interactive mode, giving you the
option to confirm or deny
$ kignore 'node_modules/'
found .gitignore .../some-path/.gitignore
Added node_modules/ to .gitignore
Removed node_modules/ from git index
$ git ignore 'node_modules/'
found .gitignore .../some-path/.gitignore
Added node_modules/ to .gitignore
Removed node_modules/ from git index
Cargo will only pull the kignore
command and won't add a subcommand to `git.
$ cargo install kignore
TBA