https://github.com/duccem/duccem-git
  
  
    CLI tool to commits 
    https://github.com/duccem/duccem-git
  
cli commit emoji git
        Last synced: about 2 months ago 
        JSON representation
    
CLI tool to commits
- Host: GitHub
 - URL: https://github.com/duccem/duccem-git
 - Owner: Duccem
 - Created: 2022-12-27T22:50:18.000Z (almost 3 years ago)
 - Default Branch: main
 - Last Pushed: 2024-02-23T00:11:53.000Z (over 1 year ago)
 - Last Synced: 2025-07-31T00:37:13.302Z (3 months ago)
 - Topics: cli, commit, emoji, git
 - Language: TypeScript
 - Homepage:
 - Size: 489 KB
 - Stars: 1
 - Watchers: 1
 - Forks: 0
 - Open Issues: 0
 - 
            Metadata Files:
            
- Readme: README.md
 - Changelog: changelog.md
 
 
Awesome Lists containing this project
README
          # Duccem-git 
A little CLI tool to make more easy semantics commits
## Installation
```bash
 $ npm install -g @duccem/duccem-git
```
## Commands
| command | alias                | Description                  |
| --------|----------------------|------------------------------|
| commit  | -c --commit          | Make a commit with a message |
| add     | -a --add             | Add to the staging           |
| amend   | -ca --commit-amend   | Make commit to amend         |
| push    | -p --push            | Push the commit              |
## Usage 
### Add to staging
```bash
$ duccem-git -a
$ dcgit -a
```
### Commit with message
```bash
$ duccem-git -c
$ dcgit -c
$ dcgit
```
### Commit amend
```bash
$ duccem-git -ca
$ dcgit -ca
```
### Push commit
```bash
$ duccem-git -p
$ dcgit -p
```