Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/victordantasdev/jira-commit
https://github.com/victordantasdev/jira-commit
Last synced: 14 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/victordantasdev/jira-commit
- Owner: victordantasdev
- Created: 2022-03-12T01:17:49.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2022-03-15T18:12:29.000Z (over 2 years ago)
- Last Synced: 2024-10-11T00:47:45.323Z (about 1 month ago)
- Language: TypeScript
- Size: 60.5 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Softa auto commit
The purpose of this CLI is to facilitate the commits we make in softaliza
projects as we use the `BIR-123` or `GEN-123` pattern to create branches
and automated commits with jira tasks for each project.
And just install the CLI and run it with the command `softa-autocommit` and
then type the commit message and the CLI will mount and commit in the pattern
we follow this way: `git commit -m "BIR-123: asd"` automatically getting the
task ID on the branch you are working on.## Install
```bash
npm i -g softa-autocommit
```## Usage
After installation on your machine just type this command on the directory that you're working on
```bash
softa-autocommit
```## Tips
You can also add an `alias` to your shell profile configuration file with the command
```bash
# on ~/.zshrc or ~/.bashrc
alias gc="softa-autocommit"
```And you can also concatenate the `git add` command with the CLI
```bash
git add && gc# Or if you don't have create an alias use:
git add && softa-autocommit
```