1.1.3 • Published 4 years ago
giq v1.1.3
git-quick
git-quick cli is a single line git command executer. This also executes other basic git commands easily.
Installation
npm install -g giq
Pre-requisites
How to use single commands
currently supports git push only
giq p <commit_msg> <branch>this command is equivalent to
git add .
git commit -m "message"
git push origin <branch>Available other commands
| git | giq |
|---|---|
| git init | giq i |
| git remote add origin | giq r |
| git add <file / .> | giq a <file / .> |
| git commit -m | giq c |
| git push origin <branch_name> | giq p <branch_name> |
| git checkout <branch_name> | giq b <branch_name> |
| git checkout -b <branch_name> | giq cb <branch_name> |
| git pull origin <branch_name> | giq pl <branch_name> |
| git blame <file_name> | giq bl <file_name> |
| git status | giq s |
| git log | giq l |
| git stash | giq st |
use giq help if you lost
Development
Want to contribute? Great!
License
MIT