git-quick cli is a single line git command executer. This also executes other basic git commands easily.
npm install -g giq
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>| 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
Want to contribute? Great!
MIT