cli-gitignore
is a simple ignore file generator written in Rust.
https://github.com/Chloe199719/cli-gitignore
0.1.2
The tool provides several command-line options:
--help, -h
: Show the help message.--version, -v
: Show the version.--language, -l
: Specify a Programming Language (typescript, javascript, rust).--remove, -r
: Remove the current .gitignore file if it exists and generate a new one.--custom, -c
: Add custom entries to the .gitignore file. Example: -c .idea .vscode
.If no language is specified, the tool will prompt the user to enter a language. The tool currently supports generating .gitignore
files for Typescript, Javascript, and Rust.
bash
https://github.com/Chloe199719/cli-gitignore
bash
cargo build --release
bash
./target/release/cli-gitignore
bash
cargo install cli-gitignore
bash
cli-gitignore
bash
cli-gitignore -l typescript
bash
cli-gitignore -l rust
bash
cli-gitignore -l rust -c .idea .vscode