Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/duccem/duccem-git
- Owner: Duccem
- Created: 2022-12-27T22:50:18.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2024-02-23T00:11:53.000Z (10 months ago)
- Last Synced: 2024-10-31T11:45:13.944Z (about 2 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
```