mirror of
https://github.com/rzmk/commit-helper.git
synced 2025-12-19 05:29:24 +00:00
feat: initial commit
This commit is contained in:
commit
55162fbad2
6 changed files with 478 additions and 0 deletions
36
README.md
Normal file
36
README.md
Normal file
|
|
@ -0,0 +1,36 @@
|
|||
# commit-helper (ch)
|
||||
|
||||
A simple tool to help write commit messages and run git commands.
|
||||
|
||||

|
||||
|
||||
## Installation
|
||||
|
||||
```bash
|
||||
cargo install --git https://github.com/rzmk/commit-helper
|
||||
```
|
||||
|
||||
## Usage
|
||||
|
||||
To run the tool, simply run `ch` in your terminal.
|
||||
|
||||
```bash
|
||||
ch
|
||||
```
|
||||
|
||||
If you want to run `git add -A` before committing, use the `-a` flag
|
||||
|
||||
```bash
|
||||
ch -a
|
||||
```
|
||||
|
||||
If you want to do a dry run without actually adding or committing, use the `ch -d` or `ch --dry-run` flag.
|
||||
|
||||
```bash
|
||||
ch -d
|
||||
```
|
||||
|
||||
## Tech Stack
|
||||
|
||||
- [Rust](https://www.rust-lang.org/)
|
||||
- [inquire](https://github.com/mikaelmello/inquire)
|
||||
Loading…
Add table
Add a link
Reference in a new issue