Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/duccem/duccem-git

CLI tool to commits
https://github.com/duccem/duccem-git

cli commit emoji git

Last synced: about 1 month ago
JSON representation

CLI tool to commits

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
```