0.0.3 • Published 5 years ago
@johnvidal77/ergos v0.0.3
Ergos - CLI
Be simple, be fast
Ergos is a CLI to help developers get things done quickly. Why keep writing the same command a thousand times when you can write just once? This is Ergos.
Getting started
Make sure you have node installed Node and NPM or Yarn, then run the following commands:
npm i -g @johnvidal77/ergos
or
yarn add @johnvidal77/ergos
Functions
There will be many functions, but since this is an alpha there is just one function available.
Git Push
Instead of running 3 commands to push changes to your git, now you can do with just one. This functions executes the following commands in order:
- git add .
- git commit -m "your commit"
- git push ${origin your-branch}(optional)
Just run:
ergos --push "${commit}" ${branch}
Commit: Your commit must be inside quotes
Also you can write just ergos -p
instead of ergos --push