🏹 A CLI tool to either run multiple git commit related commands in one go, or use an interactive commit UI to follow a commit convention.
Find a file
2023-12-01 20:59:42 -05:00
.github/workflows ci: add release.yml 2023-11-29 09:36:52 -05:00
src feat: add -p flag for git push after commit 2023-12-01 20:59:42 -05:00
.gitignore feat: initial commit 2023-11-29 09:18:39 -05:00
Cargo.lock feat: add -p flag for git push after commit 2023-12-01 20:59:42 -05:00
Cargo.toml feat: add -p flag for git push after commit 2023-12-01 20:59:42 -05:00
demo.gif docs: update demo.gif to using v0.1.3 & smaller file size 2023-11-29 22:30:04 -05:00
README.md feat: add -p flag for git push after commit 2023-12-01 20:59:42 -05:00

commit-helper (ch)

A simple tool to help write commit messages and run git commands.

Demo

Installation

Make sure you have Cargo installed, then run the following command in your terminal:

cargo install --git https://github.com/rzmk/commit-helper

Usage

To run the tool, simply run ch in your terminal.

ch

-a

If you want to run git add -A before committing, use the -a flag

ch -a

-p

If you want to run git push after committing, use the -p flag

ch -p

--dry-run or -d

If you want to do a dry run without actually adding or committing, use the -d or --dry-run flag.

ch -d

--debug

If you want to see the debug output, use the --debug flag.

ch --debug

Note that the debug output will not be printed if you use the --dry-run flag.

Tech Stack