cli-gitignore

Description

cli-gitignore is a simple ignore file generator written in Rust.

Author

Chloe

License

MIT

Repository

https://github.com/Chloe199719/cli-gitignore

Version

0.1.2

Usage

The tool provides several command-line options:

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.

Installation

From Source

  1. Clone the repository:

bash https://github.com/Chloe199719/cli-gitignore

  1. Build the project:

bash cargo build --release

  1. Run the executable:

bash ./target/release/cli-gitignore

From Crates.io

  1. Install the tool:

bash cargo install cli-gitignore

  1. Run the executable:

bash cli-gitignore

Examples

Generate a .gitignore file for Typescript

bash cli-gitignore -l typescript

Generate a .gitignore file for Rust

bash cli-gitignore -l rust

Generate a .gitignore file for Rust with custom entries

bash cli-gitignore -l rust -c .idea .vscode