feat: add -p flag for git push after commit

This commit is contained in:
rzmk 2023-12-01 20:59:42 -05:00
parent 5cd3c35814
commit 2b8d4b103e
No known key found for this signature in database
4 changed files with 29 additions and 2 deletions

View file

@ -28,6 +28,14 @@ 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
```bash
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.